/**
 * Flattens a deeply nested object structure to a single-level object
 * while preserving the original keys
 * @param obj The nested object to flatten
 * @returns A flattened object where all nested keys are at the top level
 */
export declare const flattenObject: (obj: Record<string, any>, values: Record<string, string | string[]>) => Record<string, any>;
