export declare class Requester { private readonly apiURL; constructor(apiURL?: string); get(path: any, query: QueryParams): Promise; request(url: string, method: string): Promise; }