import { ISerberPlugin } from '@berish/serber';
import { IPrint, PrintTypeEnum } from '../abstract';
export interface IErrorPrint extends IPrint<PrintTypeEnum.printError> {
    name: string;
    message: string;
}
export declare const errorToErrorPrintPlugin: ISerberPlugin<Error, IErrorPrint, {}>;
//# sourceMappingURL=plugin.d.ts.map