import * as react_jsx_runtime from 'react/jsx-runtime'; import { Dialog } from '@base-ui/react/dialog'; import * as React from 'react'; declare function Sheet({ ...props }: Dialog.Root.Props): react_jsx_runtime.JSX.Element; declare function SheetTrigger({ ...props }: Dialog.Trigger.Props): react_jsx_runtime.JSX.Element; declare function SheetClose({ ...props }: Dialog.Close.Props): react_jsx_runtime.JSX.Element; declare function SheetContent({ className, children, side, showCloseButton, ...props }: Dialog.Popup.Props & { 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 }: Dialog.Title.Props): react_jsx_runtime.JSX.Element; declare function SheetDescription({ className, ...props }: Dialog.Description.Props): react_jsx_runtime.JSX.Element; export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger };