import { type IStream } from '../../stream/index.js'; import type { I$Slottable } from '../../ui-renderer-dom/index.js'; export interface Tab { content: I$Slottable; head: I$Slottable; } export interface I$Tabs { selected: IStream; tabs: Tab[]; } export declare const $Tabs: (config: I$Tabs) => (iTether: import("../../ui/types.js").IOutputTethers<{ clickTab: Tab; }>) => I$Slottable;