export declare const enum DataType { Integer = "Integer", String = "String", Boolean = "Boolean", DateTime = "DateTime", Date = "Date" } export interface ConfigurationKey { path: string; dataType: DataType; value: string | boolean; } export declare class AjusteeClient { private readonly url; appId?: string | undefined; defaultParams?: Record | undefined; constructor(url: string, appId?: string | undefined, defaultParams?: Record | undefined); getConfigKeys(path?: string, additionalParams?: Record): Promise; private getConfigKeys2; }