export declare type ConstructorArgs = { message: string; type?: "warning" | "error"; data?: any; }; export declare class ContreebutorsError { message: string; type: "warning" | "error"; data: any; constructor(args: ConstructorArgs); }