import { Dispatch, ReactNode, SetStateAction } from 'react'; declare type Types = 'right' | 'left' | 'top' | 'bottom'; interface Props { header?: string; open?: boolean; position?: Types; hasBack?: boolean; subheader?: string; hasClose?: boolean; goBack?: () => void; children?: ReactNode; cancelIcon?: JSX.Element; backIcon?: JSX.Element; close: Dispatch>; } declare const Drawer: (props: Props) => JSX.Element; export default Drawer; //# sourceMappingURL=Drawer.d.ts.map