import { InputBuilder } from "./InputBuilder"; export declare class PasswordInputBuilder extends InputBuilder { /** * Is confirmed password */ protected isConfirmed: boolean; /** * Confirm password input */ protected confirmPasswordInput?: PasswordInputBuilder; /** * Boot */ protected boot(): void; /** * Determine whether to display the confirm password input */ confirmed(confirmed?: boolean): this; /** * {@inheritDoc} */ clearCache(): this; /** * Set min length for the password */ minLength(length: number): this; /** * {@inheritDoc} */ render(): any; } //# sourceMappingURL=PasswordInputBuilder.d.ts.map