import * as React from 'react'; import { Drawer as DrawerPrimitive } from 'vaul'; /** * Mobile-first bottom sheet drawer (accessible pull-up panel). * * @description * Replaces modals on mobile devices by sliding a panel up from the bottom. * Built on Vaul. Supports direction: `top`, `bottom` (default), `left`, `right`. * * @ai-rules * 1. Compose with `DrawerTrigger > DrawerContent > DrawerHeader + DrawerFooter`. * 2. On mobile corporate screens, prefer `` for detail actions and `` for side navigation panels. * 3. For desktop-first side panels, use `` instead. */ declare function Drawer({ ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function DrawerTrigger({ ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function DrawerPortal({ ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function DrawerClose({ ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare const DrawerOverlay: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes, "ref"> & React.RefAttributes>; declare function DrawerContent({ className, children, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function DrawerHeader({ className, ...props }: React.ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element; declare function DrawerFooter({ className, ...props }: React.ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element; declare function DrawerTitle({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function DrawerDescription({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function DrawerHandle({ className, ...props }: React.ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element; export { Drawer, DrawerPortal, DrawerOverlay, DrawerTrigger, DrawerClose, DrawerContent, DrawerHeader, DrawerFooter, DrawerTitle, DrawerDescription, DrawerHandle, };