/// export interface DrawerPushProps { content?: React.ReactNode; drawer?: DrawerProps; config?: DrawerPushConfigProps; visible?: boolean; onClose?: () => void; } export interface DrawerProps { header?: React.ReactNode; content?: React.ReactNode; footer?: React.ReactNode; } export interface DrawerStyle { drawer?: React.CSSProperties; header?: React.CSSProperties; content?: React.CSSProperties; footer?: React.CSSProperties; } export interface DrawerPushConfigProps { showCloseButton?: boolean; siderWidth?: string | 0; drawerStyle?: DrawerStyle; }