importtype { VisulimaError } from"./visulima-error.d.ts";
/**
* Will return an array of all causes in the error in the order they occurred.
*/declareconstgetErrorCauses: <E = Error | VisulimaError | unknown>(error: E) => E[];
exportdefault getErrorCauses;