import { MergeableInput, MergeableValue } from "../types/value.types"; export type MergedValue = MergeableValue | Record; export declare function merge(...objs: MergeableInput[]): Record;