import { type IBehavior } from '../../stream-extended/index.js'; import type { I$Slottable, IComponentBehavior, IOutputTethers } from '../types.js'; type IComponent = (createCallback: (...args: IBehavior[]) => [I$Slottable, IComponentBehavior] | [I$Slottable]) => (iTether: IOutputTethers) => I$Slottable; export declare const component: IComponent; export {};