/**
 * The number of nested drawers that are currently open.
 * @type {number}
 */
export declare const nestedDrawers = "--nested-drawers";
/**
 * The height of the drawer popup.
 * @type {CSS length}
 */
export declare const height = "--drawer-height";
/**
 * The height of the frontmost open drawer in the current nested drawer stack.
 * @type {CSS length}
 */
export declare const frontmostHeight = "--drawer-frontmost-height";
/**
 * The swipe movement on the X axis.
 * @type {CSS length}
 */
export declare const swipeMovementX = "--drawer-swipe-movement-x";
/**
 * The swipe movement on the Y axis.
 * @type {CSS length}
 */
export declare const swipeMovementY = "--drawer-swipe-movement-y";
/**
 * The snap point offset used for translating the drawer.
 * @type {CSS length}
 */
export declare const snapPointOffset = "--drawer-snap-point-offset";
/**
 * A scalar (0.1-1) used to scale the swipe release transition duration in CSS.
 * @type {number}
 */
export declare const swipeStrength = "--drawer-swipe-strength";