import { Service } from 'laravel-jstools-di';
import { AxiosServiceContract } from './contracts/AxiosServiceContract';
import { CallbackListInterface } from './interfaces/CallbackListInterface';
import { FormContract } from '../../entities/Form/contracts/FormContract';
export declare class AxiosService extends Service implements AxiosServiceContract {
    protected serviceDependsList: string[];
    send(config: any, callbackList: CallbackListInterface, showNoty?: boolean, form?: FormContract): Promise<{
        result: boolean;
        data: any;
    }>;
}
