import { Rule } from "./rule"; export declare class LocalizedRule extends Rule { /** * Rule name */ static ruleName: string; /** * Set error type based on current situation */ protected errorType: { type: string; placeholders: {}; }; /** * Validate the rule */ validate(): Promise; /** * Set the error type */ protected markError(type: string, placeholders?: any): void; /** * Get error message */ error(): any; } //# sourceMappingURL=localized.d.ts.map