import type { ReactNode } from 'react'; import type { StyleXStyles } from '@stylexjs/stylex'; type IStyles = StyleXStyles<{ width?: string; height?: string; backgroundColor?: string; }>; export interface IDrawer { onClose: () => void; isOpen: boolean; children?: ReactNode; position: 'Left' | 'Right' | 'Top' | 'Bottom'; size?: string; duration?: number; style?: IStyles; } export {};