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