export interface Extras { [key: string]: any; } export declare type Report = (error: Error, extra?: Extras) => void; export declare const convertAnyToError: (error: any) => any;