export type ACEPlatform = 'ACONE'; export type IAceConfiguration = { init: (key: string, type?: ACEPlatform, debug?: boolean, enablePrivacyPolicy?: boolean, disableToCollectAdvertisingIdentifier?: boolean) => AceConfiguration; PLATFORM: { DEFAULT: ACEPlatform; }; toJSONString(): string; }; export type AceConfiguration = { key: string; platform?: ACEPlatform; debug?: boolean; enablePrivacyPolicy?: boolean; disableToCollectAdvertisingIdentifier?: boolean; }; export declare const AceConfiguration: IAceConfiguration; //# sourceMappingURL=aceconfiguration.d.ts.map