import * as React from "react"; import * as SheetPrimitive from "@radix-ui/react-dialog"; import type { VariantProps } from "class-variance-authority"; 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 SheetContent: React.ForwardRefExoticComponent, "ref"> & VariantProps<(props?: ({ side?: "left" | "right" | "top" | "bottom" | null | undefined; padding?: "default" | "none" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string> & { title?: string; description?: string; /** Accessible label for the built-in close button. Override for non-English apps. */ closeLabel?: string; } & React.RefAttributes>; declare const SheetHeader: { ({ className, ...props }: React.HTMLAttributes): React.JSX.Element; displayName: string; }; declare const SheetFooter: { ({ className, ...props }: React.HTMLAttributes): React.JSX.Element; displayName: string; }; declare const SheetTitle: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const SheetDescription: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export * from "./variants.js"; export { Sheet, SheetPortal, SheetOverlay, SheetTrigger, SheetClose, SheetContent, SheetHeader, SheetFooter, SheetTitle, SheetDescription, }; //# sourceMappingURL=index.d.ts.map