import type { InputOptions } from "../Input/Input.types.js"; export interface InputProps extends Omit, Record { type?: string; placeholder?: string; value?: string; } export interface InputChangeDetail { value: string; } export declare function registerInputElement(): CustomElementConstructor | undefined; //# sourceMappingURL=input.d.ts.map