import { Common } from "../namespaces/common.namespace";
/**
 * Base service
 */
export declare class BaseService {
    /**
     * Host
     * @description Target host for the service
     */
    protected get host(): string;
    /**
     * Config
     * @description Configuration for the service
     */
    protected readonly config: Common.Interfaces.IDotypayConfig;
    /**
     * Constructor
     * @param config
     */
    constructor(config: Common.Interfaces.IDotypayConfig);
}
