import { TransportType } from '../interfaces';
export declare class MethodusClientConfig {
    transportType: any;
    classType: any;
    serviceName?: string;
    resolver: Promise<string> | string | any;
    constructor(classType: any, transportType: TransportType, resolver?: Promise<any> | any);
}
