import type { ReactNode } from 'react'; export type DrawerProps = { header?: ReactNode; footer?: ReactNode; children: ReactNode; }; export declare const PrimitiveDrawer: import("react").ForwardRefExoticComponent>;