import { SvelteComponent } from 'svelte' import type { Theme } from '../theme.js' declare const __propDef: { props: { /** * Prevent interactivity and gray out the control. * * @default `false` */ disabled?: boolean /** * Active page index. * * Note that SSR will always render the first page height, regardless of the * initial active index. * * @default `0` * @bindable */ selectedIndex?: number /** * Custom color scheme. * * If undefined, inherits default Tweakpane theme equivalent to * `ThemeUtils.presets.standard`, or the theme set with * `setGlobalDefaultTheme()`. * * @default `undefined` */ theme?: Theme | undefined } events: { [evt: string]: CustomEvent } slots: { /** * A `` component. */ default: {} } exports?: {} | undefined bindings?: string | undefined } export type TabGroupProps = typeof __propDef.props export type TabGroupEvents = typeof __propDef.events export type TabGroupSlots = typeof __propDef.slots /** * Contains a collection of `` components to be presented as a tabs. * * Wrapper around Tweakpane's [`addTab`](https://tweakpane.github.io/docs/ui-components/#tab) method. * * The name of this concept within the underlying vanilla JS Tweakpane API is `tab`, but it has been * changed to `TabGroup` in _Svelte Tweakpane UI_ to clarify it's relationship to the `` * component. * * Usage outside of a `` component will implicitly wrap the tab in ``. * * @example * ```svelte * * * * *