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