import * as react_jsx_runtime from 'react/jsx-runtime'; import * as React from 'react'; import { Dialog } from 'radix-ui'; declare function Sheet({ ...props }: React.ComponentProps): react_jsx_runtime.JSX.Element; declare function SheetTrigger({ ...props }: React.ComponentProps): react_jsx_runtime.JSX.Element; declare function SheetClose({ ...props }: React.ComponentProps): react_jsx_runtime.JSX.Element; declare function SheetContent({ className, children, side, showCloseButton, ...props }: React.ComponentProps & { side?: "top" | "right" | "bottom" | "left"; showCloseButton?: boolean; }): react_jsx_runtime.JSX.Element; declare function SheetHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element; declare function SheetFooter({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element; declare function SheetTitle({ className, ...props }: React.ComponentProps): react_jsx_runtime.JSX.Element; declare function SheetDescription({ className, ...props }: React.ComponentProps): react_jsx_runtime.JSX.Element; export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger };