import { type PolymorpheusContent } from '@taiga-ui/polymorpheus';
export declare class TuiValidationError<T extends Record<string, any> = Record<string, unknown>> {
    readonly message: PolymorpheusContent<T>;
    readonly context: T;
    constructor(message: PolymorpheusContent<T>, context?: T);
}
