import { IActionResult } from "@etsoo/shared";
/**
 * Action result error
 */
export declare class ActionResultError extends Error {
    /**
     * Format the result to a meaningful string
     * @param result Result
     */
    static format(result: IActionResult): string;
    /**
     * Related result
     */
    readonly result: IActionResult;
    /**
     * Constructor
     * @param result Result
     */
    constructor(result: IActionResult);
}
