import { type WithElementRef } from "../../../utils.js"; import type { HTMLAttributes } from "svelte/elements"; type Props = WithElementRef> & { value?: string; onValueChange?: (value: string) => void; }; declare const Tabs: import("svelte").Component; type Tabs = ReturnType; export default Tabs;