import { Module } from '@zetapush/core'; export declare type WorkerDeclaration = any; export declare type Service = any; export declare type CustomCloudService = any; export interface Config { appName?: string; developerLogin?: string; developerPassword?: string; developerSecretToken?: string; platformUrl?: string; } export interface NormalizedWorkerDeclaration { [namespace: string]: Function; } export interface ResolvedConfig extends Config { appName: string; developerLogin: string; developerPassword: string; platformUrl: string; workerServiceId?: string; npmRegistry?: string; skipIgnore?: string; } export declare type ServerClient = any; export declare type WorkerDeclarationNormalizer = (declaration: WorkerDeclaration) => Promise;