import { CSSProperties, type ReactNode } from 'react'; type DrawerPosition = 'left' | 'right' | 'top' | 'bottom'; type Props = { isOpen: boolean; close: () => void; title: ReactNode; position?: DrawerPosition; size?: CSSProperties['width']; footer?: ReactNode; overlay?: boolean; showCloseButton?: boolean; children: ReactNode; }; declare const Drawer: ({ isOpen, close, title, position, size, footer, overlay, showCloseButton, children, }: Props) => import("react").ReactPortal | null; export { Drawer }; export type { DrawerPosition }; //# sourceMappingURL=Drawer.component.d.ts.map