import { ILocalizationItemOptions } from "../../../Globalization/ILocalizationItemOptions.js";
import { INodeSystemInstructionOptions } from "../NodeSystem/INodeSystemInstructionOptions.js";
import { TranslationInstruction } from "./TranslationInstruction.js";
/**
 * Represents an instruction which provides translations.
 */
export declare class ErrorMessageInstruction extends TranslationInstruction {
    /**
     * Initializes a new instance of the {@link ErrorMessageInstruction `ErrorMessageInstruction`} class.
     *
     * @param options
     * The options of the error-message.
     */
    constructor(options: INodeSystemInstructionOptions<ILocalizationItemOptions>);
    /**
     * @inheritdoc
     *
     * @returns
     * The messages of the options-instruction.
     */
    GetMessages(): Record<string, Record<string, Record<string, string>>>;
}
