/** An object with string keys and arbitrary values, used for recursive meta flattening. */ export type StringIndexable = Record; /** * Recursively flattens a nested meta object into a flat dictionary with colon-delimited keys. * @param obj - The nested object to flatten. * @param parentKey - The accumulated key prefix from parent levels. * @returns A flat record mapping colon-delimited property names to string values. */ export declare const getMetaAsDict: (obj: StringIndexable, parentKey?: string) => Record; //# sourceMappingURL=getMetaAsDict.d.ts.map