import React from 'react'; export interface DrawerProps { /** Whether to attach the drawer to the right of the screen. Defauts to false. */ right: boolean; /** The size of the drawer in pixels. Defaults to 320. */ size: number; /** Whether the drawer is open or not. Defaults to false. */ isOpen: boolean; children?: React.ReactNode; } declare const Drawer: ({ right, size, isOpen, children }: DrawerProps) => React.JSX.Element; export default Drawer;