/// import type { SvelteComponentTyped } from "svelte"; export interface TabsProps { /** * @default null */ class?: string | false | null; /** * A class string to pass to each `` component. * @default null */ tabClass?: string | false | null; /** * The currently selected tab. * @default null */ value?: string | null; /** * An array of strings that act as the labels of the tabs. * @default undefined */ items: string[]; /** * The name passed to each of the underlying ``s, which in turn becomes assigned to the ``s' [name attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefname). * @default undefined */ name: string; } export default class Tabs extends SvelteComponentTyped< TabsProps, { change: CustomEvent<{ value: string; nativeEvent: Event }> }, {} > {}