import type { FilterFuncString, HTMLInputTypeAttribute } from '../../../types/jsx/html.js'; import type { InputKeyboardEvent } from '../../../types/jsx/html.events.js'; import { TungstenSimpleComponent } from '../../Components.jsx'; export type ExplicityTypedBindVariableLegacy = [O, K]; type BasicProps = { className?: string; style?: object; css?: string; name?: string; type?: HTMLInputTypeAttribute | undefined; value?: string; placeholder?: string; }; type BindableInputTypedProps = BasicProps & (T extends string ? { bind?: ExplicityTypedBindVariableLegacy; filter?: FilterFuncString | undefined; } : { bind?: ExplicityTypedBindVariableLegacy; filter: FilterFuncString; }); export declare class BindableInputTypedLegacy extends TungstenSimpleComponent> { content: () => import("../../ContentNode.js").ContentNode; } export {}; //# sourceMappingURL=BindableInputTypedLegacy.d.ts.map