import { PropsWithChildren } from 'react'; import { DrawerOptions } from "./use-drawer"; export type DrawerProps = PropsWithChildren; export declare const Drawer: ({ children, ...options }: DrawerProps) => JSX.Element;