import * as Conf from '../../Configs/index.js';
import * as Cmds from '../../Commands/index.js';
/** The reporting mode an EPL printer can be placed in. */
export type CmdErrorReportingMode = 'Disabled' | 'Normal' | 'Alternate';
export declare class CmdErrorReporting implements Cmds.IPrinterExtendedCommand {
    readonly mode: CmdErrorReportingMode;
    static typeE: symbol;
    typeExtended: symbol;
    commandLanguageApplicability: Conf.PrinterCommandLanguage;
    name: string;
    type: "CustomCommand";
    effectFlags: Cmds.CommandEffectFlags;
    toDisplay(): string;
    constructor(mode: CmdErrorReportingMode);
}
export declare const cmdErrorReportingMapping: Cmds.IPrinterCommandMapping<string>;
export declare function handleCmdErrorReporting(cmd: Cmds.IPrinterCommand, _docState: Cmds.TranspiledDocumentState, _commandSet: Cmds.CommandSet<string>): string;
//# sourceMappingURL=CmdErrorReporting.d.ts.map