export type NormalizeKeyValue = [ string, //camelCase key 'log' | 'settings', //where to put it string | number | Record ]; /** * Parse every key * Some keys we have to parse individually * others follow a pattern * @param key - key to parse * @param val - value to parse * @returns [camelKey, logOrSettings, value] */ export declare function normalizeKeyValue(key: string, val: string): NormalizeKeyValue; /** * similar for keys, but value will be '' and fixed later * @param flag * @returns */ export declare function normalizeFlag(flag: string): NormalizeKeyValue; //# sourceMappingURL=normalize.d.ts.map