export declare function isPlainObject(item: unknown): item is Record; export interface DeepmergeOptions { clone?: boolean; } export default function deepmerge(target: T, source: unknown, options?: DeepmergeOptions): T;