///
declare const Request: {
text: string;
body: any;
post: jest.Mock;
get: jest.Mock;
send: jest.Mock;
query: jest.Mock;
field: jest.Mock;
type: jest.Mock;
set: jest.Mock;
accept: jest.Mock;
timeout: jest.Mock;
proxy: jest.Mock;
buffer: jest.Mock;
then: jest.Mock;
end: jest.Mock;
__setMockDelay: (boolValue: any) => void;
__setMockResponse: (mockRes: any) => void;
__setMockError: (mockErr: any) => void;
__setMockResponseBody: (body: any) => void;
};
export default Request;