import { Mandatory } from "../../../viewModel";
export interface FieldInputProps {
    id: string;
    label: string;
    modelValue?: string;
    helperMessage?: string;
    placeholder?: string;
    mandatory: Mandatory;
    pattern?: string;
    minlength?: number;
    maxlength?: number;
    maxFieldLength?: number;
    disabled?: boolean;
    readonly?: boolean;
    showError?: boolean;
    clickToCopy?: boolean;
}
//# sourceMappingURL=viewModel.d.ts.map