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 sheetVariants: (props?: ({ side?: "bottom" | "left" | "right" | "top" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; interface SheetContentProps extends React.ComponentPropsWithoutRef, VariantProps { closeable?: boolean; } declare const SheetContent: React.ForwardRefExoticComponent>; declare const SheetHeader: { ({ className, leading, ...props }: React.HTMLAttributes & { leading?: React.ReactNode; }): 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, "ref"> & React.RefAttributes>; declare const SheetDescription: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export { Sheet, SheetTrigger, SheetClose, SheetContent, SheetHeader, SheetFooter, SheetTitle, SheetDescription, }; //# sourceMappingURL=sheet.d.ts.map