import { JsonMap } from '@salesforce/ts-types';
/** will throw on any upperCase unless they are present in the allowList.  Recursively searches the object, returning valid keys */
export declare const ensureNoUppercaseKeys: (path: string) => (allowList?: string[]) => (data: JsonMap) => string[];
