import { DialogBaseProps } from '../base'; /** * Props for {@link Drawer}. * Extends {@link DialogBaseProps}. * * @category Drawer */ export type DrawerProps = Omit; /** * Drawer component used to display side content that slides in from the edge of the screen. * * Use for navigation panels, filters, or contextual content. * * @category Drawer * @function * @param props - All drawer props inherited from {@link DialogBase}. * * @example * setOpen(false)}> * Content * */ export declare const Drawer: import('react').ForwardRefExoticComponent>;