import type { ElementOrRef } from '../../types'; import React from 'react'; export interface DrawerProps extends React.HTMLAttributes { children: React.ReactNode; position: 'top' | 'bottom' | 'left' | 'right'; open?: boolean; behavior?: 'modal' | 'non-modal'; focusOptions?: { initialFocus?: ElementOrRef; returnFocus?: ElementOrRef; }; onClose?: () => void; portal?: React.RefObject | HTMLElement; } declare const Drawer: React.ForwardRefExoticComponent & React.RefAttributes>; export default Drawer;