/** * Shared type guard: checks if a value is a non-null object. */ export declare function isRecord(value: unknown): value is Record;