export declare function sendAPIReqest<RT>({ path, query, }: {
    path: string;
    query?: Record<string, string>;
}): Promise<RT>;
