import { PaperProps } from '../Paper'; import { AnimationProps } from '../Animation'; import { PrismaneWithInternal, PrismaneBreakpoints, PrismaneProps } from '../../types'; import { DrawerHeaderProps } from "./DrawerHeader"; import { DrawerFooterProps } from "./DrawerFooter"; export { type DrawerHeaderProps, type DrawerFooterProps }; export type DrawerProps = PrismaneProps<{ position?: "right" | "left" | "top" | "bottom"; size?: PrismaneBreakpoints | string | number; open?: boolean; closable?: boolean; onClose?: () => void; }, AnimationProps & PaperProps>; declare const Drawer: PrismaneWithInternal; export default Drawer; //# sourceMappingURL=Drawer.d.ts.map