import { BoxProps } from '../Box'; export interface DrawerProps extends Omit { /** * Whether the drawer should be open. */ expanded?: boolean; /** * Which edge of the drawer content container is aligned to during the animation. */ alignContentContainer?: 'left' | 'right'; } export declare const Drawer: React.FC;