import type { ReactNode } from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; export interface DbDrawerProps { visible: boolean; children: ReactNode; placement?: 'left' | 'right'; width?: number; overlayStyle?: StyleProp; drawerStyle?: StyleProp; onClose: () => void; /** 动画时长(ms),默认300 */ animationDuration?: number; }