import type { ValuesOf } from '../../Types/ValuesOf'; /** * `DrawerPosition` - The `DrawerPosition` object is used to describe the different positions of a drawer. */ export declare const DrawerPosition: { /** * `left` - Drawer position left. */ readonly Left: "left"; /** * `right` - Drawer position right. */ readonly Right: "right"; /** * `top` - Drawer position top. */ readonly Top: "top"; /** * `bottom` - Drawer position bottom. */ readonly Bottom: "bottom"; }; /** * @public */ export type DrawerPosition = ValuesOf; //# sourceMappingURL=DrawerPosition.d.ts.map