import { FASTElement } from "@microsoft/fast-element"; type InputModes = { none: string; text: string; decimal: string; numeric: string; tel: string; search: string; email: string; url: string; }; type InputTypes = { text: string; number: string; password: string; search: string; email: string; url: string; }; export declare class enmeddInput extends FASTElement { input?: HTMLInputElement | null; label?: string; icon?: string; iconRight?: boolean; success?: boolean; error?: boolean; errorMessage?: string; instruction?: string; sideAlign?: boolean; value?: string; placeholder?: string; minlength?: number; maxlength?: number; disabled?: boolean; required?: boolean; type?: keyof InputTypes; step?: number; readonly?: boolean; inputmode?: keyof InputModes; name?: string; autocomplete?: string; autocorrect?: "on" | "off"; connectedCallback(): void; handleInput(): void; generateRandomId(): string; handleAttribute(): void; } export declare const EnmeddInput: import("@microsoft/fast-react-wrapper").ReactWrapper; export {}; //# sourceMappingURL=input.d.ts.map