import { GenericError } from './GenericError'; /** * Error used when intending to show a localized message to a user. */ export declare class LocalizedError extends GenericError { readonly key: string; readonly interpolationArgs: { [key: string]: string; }; constructor(message: { key: string; interpolationArgs?: { [key: string]: string; }; }); constructor(key: string, interpolationArgs?: { [key: string]: string; }); }