import { AxiosInstance } from 'axios';
export declare function delay(second: number): Promise<void>;
export declare class Request {
    private client;
    private retries;
    constructor(client: AxiosInstance);
    send(method: "GET" | "POST" | "PATCH" | undefined, data: unknown): Promise<unknown>;
}
