import type { GenericRecord } from "./GenericRecord.js"; /** * This will help with output of the error object. * Normally, the error object is not serializable, so we need to convert it to a plain object. */ export declare const convertException: (error: Error, remove?: string[]) => GenericRecord;