import { VariantProps } from 'class-variance-authority'; import * as React from 'react'; import * as SheetPrimitive 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 sheetVariants: (props?: ({ side?: "left" | "right" | "top" | "bottom" | null | undefined; variant?: "secondary" | "primary" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; interface SheetContentProps extends React.ComponentPropsWithoutRef, VariantProps { showCloseButton?: boolean; overlayClassName?: string; closeLabel?: string; } declare const SheetContent: React.ForwardRefExoticComponent>; interface SheetHeaderProps extends React.HTMLAttributes { variant?: 'primary' | 'secondary' | null; } declare const SheetHeader: { ({ className, variant, ...props }: SheetHeaderProps): 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 type SheetOverlayProps = React.ComponentPropsWithoutRef; export type SheetTitleProps = React.ComponentPropsWithoutRef; export type SheetDescriptionProps = React.ComponentPropsWithoutRef; export type SheetFooterProps = React.HTMLAttributes; export type { SheetContentProps, SheetHeaderProps }; export { Sheet, SheetPortal, SheetOverlay, SheetTrigger, SheetClose, SheetContent, SheetHeader, SheetFooter, SheetTitle, SheetDescription, sheetVariants, }; //# sourceMappingURL=Sheet.d.ts.map