import * as react from 'react'; import { ReactNode } from 'react'; type DrawerSide = 'left' | 'right'; interface DrawerProps { open: boolean; onClose?: () => void; side?: DrawerSide; title?: ReactNode; description?: ReactNode; children?: ReactNode; footer?: ReactNode; /** Panel width in pixels (maps to max-width on SheetContent) */ width?: number; } declare function Drawer({ open, onClose, side, title, description, children, footer, width, }: DrawerProps): react.JSX.Element; export { Drawer, type DrawerProps, type DrawerSide };