import { ConnectMessage, KnownAppSDK } from './types'; import { Channel } from './channel'; export declare function createInitializer(currentGlobal: typeof globalThis, apiCreator: (channel: Channel, data: ConnectMessage, currentGlobal: typeof globalThis) => KnownAppSDK): (initCb: (sdk: KnownAppSDK, customSdk: any) => any, { makeCustomApi, supressIframeWarning, }?: { makeCustomApi?: Function; supressIframeWarning?: boolean; }) => void;