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