import { type INodeCompose } from '../../../ui-renderer-dom/index.js'; import type { Input, InputType } from './types.js'; export declare const $defaultInputContainer: INodeCompose; export interface I$Input extends Input { type?: InputType; name?: string; $container?: INodeCompose; } export declare const $Input: ({ value, disabled, validation, $container }: I$Input) => (iTether: import("../../../ui/types.js").IOutputTethers<{ change: string; blur: FocusEvent; }>) => import("../../../ui/types.js").I$Slottable;