import { IPesapalConfig } from '../interfaces/IPesapalConfig.interface';
export declare class HttpClient {
    private config;
    private client;
    constructor(config: IPesapalConfig);
    post<T>(url: string, data: any, token?: string): Promise<import("axios").AxiosResponse<T, any>>;
    get<T>(url: string, token: string): Promise<import("axios").AxiosResponse<T, any>>;
}
