import type { ValuesOf } from "../../util/typings.js"; /** Positions supported by {@link Drawer}. */ export declare const DrawerPositions: { readonly start: "start"; readonly end: "end"; }; /** Drawer position type. */ export type DrawerPosition = ValuesOf; /** Size values supported by {@link Drawer}. */ export declare const DrawerSizes: { readonly small: "small"; readonly medium: "medium"; readonly large: "large"; readonly full: "full"; }; /** Drawer size type. */ export type DrawerSize = ValuesOf; /** Type values supported by {@link Drawer}. */ export declare const DrawerTypes: { readonly nonModal: "non-modal"; readonly modal: "modal"; readonly inline: "inline"; }; /** Drawer type union. */ export type DrawerType = ValuesOf; //# sourceMappingURL=drawer.options.d.ts.map