export declare function isPlainObject(value: unknown): value is Record; export declare function getProperty(value: unknown, key: string): T | undefined; export declare function hasProperty(value: unknown, key: string): boolean;