import { type WithElementRef } from "../../../utils.js"; import type { HTMLAttributes } from "svelte/elements"; type Props = WithElementRef> & { open?: boolean; side?: "left" | "right"; onClose?: () => void; }; declare const Sheet: import("svelte").Component; type Sheet = ReturnType; export default Sheet;