import { Drawer as DrawerPrimitive } from 'vaul'; import * as React from "react"; 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; } & React.RefAttributes, "ref"> & 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, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, };