import * as React from "react"; import { Drawer as DrawerPrimitive } from "vaul"; declare const Drawer: { ({ shouldScaleBackground, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const DrawerTrigger: React.ForwardRefExoticComponent>; declare const DrawerPortal: React.FC; declare const DrawerClose: React.ForwardRefExoticComponent>; declare const DrawerOverlay: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes, "ref"> & React.RefAttributes>; declare const DrawerContent: React.ForwardRefExoticComponent, "ref"> & { onAnimationEnd?: ((open: boolean) => void) | undefined; } & React.RefAttributes, "ref"> & { showHandle?: boolean | undefined; } & React.RefAttributes>; declare const DrawerHeader: { ({ className, ...props }: React.HTMLAttributes): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const DrawerFooter: { ({ className, ...props }: React.HTMLAttributes): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const DrawerTitle: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const DrawerDescription: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export { Drawer, DrawerPortal, DrawerOverlay, DrawerTrigger, DrawerClose, DrawerContent, DrawerHeader, DrawerFooter, DrawerTitle, DrawerDescription, };