export declare const request: (url: string, options: {
    method?: string;
    qs?: Record<string, any>;
    body?: string | Record<string, any>;
    headers?: Record<string, string>;
    contentType?: "json" | "form";
}, enableBackoff?: boolean) => Promise<{
    text: () => Promise<string>;
}>;
