import { type AxiosResponseHeaders } from "axios";
import { type IFletcherOptions, type IResponse } from "../fletcher";
export declare function request(url: string, userOptions?: Partial<IFletcherOptions>): Promise<IResponse | {
    headers: AxiosResponseHeaders;
    statusCode: number;
    statusMessage: string;
    text: () => Promise<any>;
}>;
