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