import { Options as OpenwhiskOptions } from 'openwhisk'; /** * * */ export declare let apihost: string; export declare let ow: any; export declare const initOWFromConfig: (owConfig: OpenwhiskOptions) => any; export declare const initOW: () => any; export declare const apiHost: { get: () => Promise; set: (newHost: string, { ignoreCerts }?: { ignoreCerts?: boolean; }) => Promise; }; export declare const auth: { get: () => string; getSubjectId: () => string; set: (newAuthKey: string) => Promise; };