import * as React from "react"; interface DrawerProps { children: React.ReactNode; defaultOpen?: boolean; open?: boolean; onOpenChange?: (open: boolean) => void; } declare const Drawer: ({ children, defaultOpen, open: controlledOpen, onOpenChange }: DrawerProps) => import("react/jsx-runtime").JSX.Element; interface DrawerTriggerProps extends React.ButtonHTMLAttributes { asChild?: boolean; } declare const DrawerTrigger: React.ForwardRefExoticComponent>; interface DrawerContentProps extends React.HTMLAttributes { className?: string; } declare const DrawerContent: React.ForwardRefExoticComponent>; declare const DrawerClose: React.ForwardRefExoticComponent & 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 & React.RefAttributes>; declare const DrawerDescription: React.ForwardRefExoticComponent & React.RefAttributes>; export { Drawer, DrawerTrigger, DrawerContent, DrawerClose, DrawerHeader, DrawerFooter, DrawerTitle, DrawerDescription };