import { PluginFn } from '@japa/runner';
import { ApiClient } from './src/client';
export { ApiClient };
export * from './src/types';
export { ApiRequest } from './src/request';
export { ApiResponse } from './src/response';
/**
 * API client plugin registers an HTTP request client that
 * can be used for testing API endpoints.
 */
export declare function apiClient(options?: string | {
    baseURL?: string;
}): PluginFn;
declare module '@japa/runner' {
    interface TestContext {
        client: ApiClient;
    }
}
