import { Logger } from '../Logger'; import { IAppConfiguration } from '../models/AppConfiguration'; /** * This should be called after the app has registered for any events it wants to handle. * The app will not receive any events until after this is called. * * This is also needed to get configuration of the app from Creators Studio. * Deprecated to get configuration using initializeComplete, instead use getConfig API * * @param logger The logger that the DaVinci API will use if any error occurs * @returns The configuration of the app provided in DaVinci Creators Studio */ export declare function initializeComplete(logger?: Logger): Promise;