import * as React from "react"; import * as DialogPrimitive from "@radix-ui/react-dialog"; declare const Sheet: React.FC; declare const SheetTrigger: React.ForwardRefExoticComponent>; declare const SheetClose: React.ForwardRefExoticComponent>; declare const SheetPortal: React.FC; declare const SheetOverlay: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const sideClasses: { readonly top: "inset-x-0 top-0 border-b"; readonly bottom: "inset-x-0 bottom-0 border-t"; readonly left: "inset-y-0 left-0 h-full w-3/4 border-r sm:max-w-sm"; readonly right: "inset-y-0 right-0 h-full w-3/4 border-l sm:max-w-sm"; }; declare const SheetContent: React.ForwardRefExoticComponent, "ref"> & { side?: keyof typeof sideClasses; } & React.RefAttributes>; declare const SheetHeader: ({ className, ...props }: React.HTMLAttributes) => import("react/jsx-runtime").JSX.Element; declare const SheetFooter: ({ className, ...props }: React.HTMLAttributes) => import("react/jsx-runtime").JSX.Element; declare const SheetTitle: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const SheetDescription: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger }; //# sourceMappingURL=sheet.d.ts.map