import React from 'react'; export interface DrawerProps { ariaLabel?: string; callback: Function; children: React.ReactNode; id?: string; onBottom?: boolean; onRight?: boolean; openCallback?: Function; title?: string; showBack?: boolean; showClose?: boolean; showMask?: boolean; } declare const Drawer: ({ ariaLabel, callback, children, id, onBottom, onRight, openCallback, title, showBack, showClose, showMask, }: DrawerProps) => React.JSX.Element; export default Drawer;