import { IPasswordRequirements } from "./i-password-requirements"; import { I18N } from "aurelia-i18n"; export declare function addCustomValidationRules(i18n: I18N): void; declare module "aurelia-validation" { interface FluentRules { password(requirements: IPasswordRequirements): FluentRuleCustomizer; mustMatch(otherPropertyName: string): FluentRuleCustomizer; } interface FluentRuleCustomizer { password(requirements: IPasswordRequirements): FluentRuleCustomizer; mustMatch(otherPropertyName: string): FluentRuleCustomizer; } }