import * as types from './types'; import { Result } from '../utils/result'; interface PandoraServiceConfig { name: string; code: string; config: string; } interface PandoraConfig { config: string; services: PandoraServiceConfig[]; } export declare function decryptPandoraConfig(rawConfig: PandoraConfig, clientId: string): any; export declare function AESDecrypt(base64Source: string, keyString: string): string; export declare const getConfigs: (clientId: string) => Promise>; export {};