import { MallocError } from "../interfaces/errors"; interface ToReadableOpts { actionNames?: string[]; } export declare const getReadableErrorMessage: (error: MallocError | any, opts: ToReadableOpts) => string; export declare const getReadableMallocErrorMessage: (error: MallocError, opts: ToReadableOpts) => string; export declare const getActionName: (actionIdx: number, opts: ToReadableOpts) => string; export {};