import { CallType } from './types'; export interface BaseConfigParams { module: string; func: string; type: CallType; } export declare class BaseConfig { readonly module: string; readonly func: string; readonly type: CallType; constructor({ module, func, type }: BaseConfigParams); toString(): string; }