import { JSONValue } from '@expo/json-file'; interface RequestOptions { body: JSONValue; } export declare class ApiV2Client { private readonly authInfo; constructor(authInfo: { accessToken: string | null; sessionSecret: string | null; }); putAsync(path: string, options: RequestOptions): Promise; postAsync(path: string, options: RequestOptions): Promise; deleteAsync(path: string): Promise; getAsync(path: string): Promise; private getAuthHeaders; private requestAsync; private static handleApiErrorAsync; } export declare function getExpoApiBaseUrl(): string; export declare function getExpoWebsiteBaseUrl(): string; export declare function getEASUpdateURL(projectId: string, manifestHostOverride: string | null): string; export declare function getExpoApiWorkflowSchemaURL(): string; export {};