import * as React from "react"; interface SheetProps { children: React.ReactNode; defaultOpen?: boolean; open?: boolean; onOpenChange?: (open: boolean) => void; } declare const Sheet: ({ children, defaultOpen, open: controlledOpen, onOpenChange }: SheetProps) => import("react/jsx-runtime").JSX.Element; interface SheetTriggerProps extends React.ButtonHTMLAttributes { asChild?: boolean; } declare const SheetTrigger: React.ForwardRefExoticComponent>; declare const SheetClose: React.ForwardRefExoticComponent & React.RefAttributes>; declare const SheetPortal: ({ children }: { children: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element; declare const SheetOverlay: React.ForwardRefExoticComponent & React.RefAttributes>; interface SheetContentProps extends React.HTMLAttributes { side?: "top" | "right" | "bottom" | "left"; } declare const SheetContent: React.ForwardRefExoticComponent>; declare const SheetHeader: { ({ className, ...props }: React.HTMLAttributes): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const SheetFooter: { ({ className, ...props }: React.HTMLAttributes): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const SheetTitle: React.ForwardRefExoticComponent & React.RefAttributes>; declare const SheetDescription: React.ForwardRefExoticComponent & React.RefAttributes>; export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, };