export type ErrorLike = Partial<Error> & {
    code?: string;
    cmd?: string;
    signal?: string;
    statusCode?: number;
    statusMessage?: string;
};
export declare function isErrorLike(error: any): error is ErrorLike;
//# sourceMappingURL=error.d.ts.map