export type ErrorLike = Error | string | { code?: string | number; message?: string; [p: string]: any; }; export declare function isErrorLike(obj: any): obj is ErrorLike;