declare const initVelt: (apiKey: string, config?: any) => Promise<any>;
declare const getVeltClient: () => Promise<any>;
declare global {
    interface Window {
        Velt: any;
    }
}

export { getVeltClient, initVelt };
