export declare const buildObject: <T>(keys: string[], builder: (key: string) => T | undefined) => Record<string, T>;
export declare const mergeInto: <T>(target: Record<string, T>, source: Record<string, T>) => Record<string, T>;
