type JsonRecord = Record; import { isRecord } from "../../../utils.js"; export type { JsonRecord }; export { isRecord }; export declare function cloneRecord(value: T | undefined): T; export declare function ensureRecord(target: JsonRecord, key: string): JsonRecord; export declare function hasOwnKey(target: JsonRecord, key: string): boolean;