import { type DialogEngineProps, type DialogProps } from "./dialog.js"; export type SheetSide = "left" | "right" | "top" | "bottom"; /** Plus any Base UI `` prop, handed straight to the popup. */ export type SheetProps = DialogProps & DialogEngineProps & { side?: SheetSide; }; export declare function Sheet({ side, size, ...rest }: SheetProps): import("react").JSX.Element;