import { HttpStatus } from "./global"; import ProxyPlugin from './index'; declare class MockRequest { url: string; constructor(url: string); $body: {}; $query: {}; $headers: {}; text: string; set(key: any, value: any): this; query(value: any): this; send(value: any): this; setContent(text: any): void; then(cb: any): this; catch(cb: any): this; } declare const _default: () => { name: string; main: ({ interceptor }: ProxyPlugin, status: HttpStatus, request: any) => { status: HttpStatus; request: MockRequest; }; }; export default _default;