/// import { ReactChild, CSSProperties, ReactNode } from 'react'; export interface DrawerPropTypes { prefixCls?: string; className?: string; children: ReactChild; style?: CSSProperties; sidebarStyle?: CSSProperties; contentStyle?: CSSProperties; overlayStyle?: CSSProperties; dragHandleStyle?: CSSProperties; sidebar: ReactNode; docked?: boolean; open?: boolean; transitions?: boolean; touch?: boolean; enableDragHandle?: boolean; position?: 'left' | 'right' | 'top' | 'bottom'; dragToggleDistance?: number; onOpenChange?: (...argument) => void; }