import { Dialog as SheetPrimitive } from "radix-ui"; import type { ComponentProps } from "react"; export declare function Sheet(props: ComponentProps): import("react/jsx-runtime").JSX.Element; export declare function SheetContent({ className, children, noOverlay, side, overlay, ...props }: ComponentProps & { side?: "top" | "right" | "bottom" | "left"; /** Render the dimmed backdrop. Disable for full-width sheets that already cover the page (nothing shows behind them). */ overlay?: boolean; noOverlay?: boolean; }): import("react/jsx-runtime").JSX.Element; export declare function SheetHeader({ className, ...props }: ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; export declare function SheetTitle({ className, ...props }: ComponentProps): import("react/jsx-runtime").JSX.Element; export declare function SheetDescription({ className, ...props }: ComponentProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=sheet.d.ts.map