import { type FC, type ReactNode, type Ref } from 'react'; export interface DrawerHeaderProps { children: ReactNode; ref?: Ref; } export declare const DrawerHeader: FC;