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