import * as s from 'solid-js'; export type ToggleTabsOptionProps = (T extends string ? { title?: string; } : { title: string; }) & { for: T; class?: string; children: s.JSX.Element; style?: string | s.JSX.CSSProperties; }; /** * Controls the color of the tab background. */ export declare const toggle_tab_color_var = "--toggle-tab-color"; export declare function ToggleTabs(props: { children: (Option: s.Component>) => s.JSX.Element; active: T; onSelect: (item: T) => void; class?: string; }): s.JSX.Element; //# sourceMappingURL=toggle-tabs.d.ts.map