import type { ReactNode } from 'react'; declare type LeftIconType = 'back' | 'cancel' | 'confirm'; declare type RightIconType = 'more' | 'confirm'; export interface DrawerProps { visible: boolean; onClose?: () => void; title?: string; leftIconType?: LeftIconType; rightIconType?: RightIconType; onLeftPress?: () => void; onRightPress?: () => void; children?: ReactNode; type?: 'elastic' | 'fixed'; colorDepth?: 'base' | 'low'; heightLevel?: 'high' | 'medium'; } export {};