/*! * ======================================================================== * @rzl-zone/next-kit * ------------------------------------------------------------------------ * Version: `0.10.4` * Author: `Rizalvin Dwiky ` * Repository: `https://github.com/rzl-zone/rzl-zone/tree/main/packages/next-kit` * ======================================================================== */ declare class ActionError extends Error { code: string; name: string; constructor(code: string, message: string); toJSON(): ActionErrorJson; } interface ActionErrorJson { code: string; message: string; stack: string | undefined; } export { ActionErrorJson as n, ActionError as t };