import React from 'react'; import type { DrawerProps } from './types'; /** * __Drawer__ * * A drawer is a panel that slides in from the left side of the screen. * * - [Examples](https://atlassian.design/components/drawer/examples) * - [Code](https://atlassian.design/components/drawer/code) * - [Usage](https://atlassian.design/components/drawer/usage) */ export declare const Drawer: ({ width, isOpen, isFocusLockEnabled, shouldReturnFocus, autoFocusFirstElem, onKeyDown, testId, children, onClose, onCloseComplete, onOpenComplete, zIndex, label, titleId, enterFrom, }: DrawerProps) => React.JSX.Element | null;