import { Method } from 'axios';
import { TokenSetType } from '../auth';
export interface GatewayServiceInterface {
    sendRequest(method: Method, uri: string, data?: unknown, tokenSet?: TokenSetType): Promise<unknown>;
}
