import { VCLFormFieldSchemaInput, VCLFormFieldSchemaInputParams } from '../schemas'; import { FormFieldControl } from './field'; export declare class FormFieldPasswordInput extends FormFieldControl { readonly placeholder: string; protected createDefaultValue(): string; } export declare class FormFieldPasswordInputComponent { field: FormFieldPasswordInput; constructor(field: FormFieldPasswordInput); }