/**
 * Check if a value is an Error-like object (cross-realm safe).
 * Uses duck typing instead of instanceof for reliability across realms.
 */
export declare function isErrorLike(err: unknown): err is {
    message: string;
};
