import { Platform } from '@expo/eas-build-job'; import { EasJsonAccessor } from './accessor'; import { BuildProfile } from './build/types'; import { SubmitProfile } from './submit/types'; import { EasJson } from './types'; interface EasJsonDeprecationWarning { message: string[]; docsUrl?: string; } export declare class EasJsonUtils { static getBuildProfileNamesAsync(accessor: EasJsonAccessor): Promise; static getBuildProfileAsync(accessor: EasJsonAccessor, platform: T, profileName?: string): Promise>; static getBuildProfileDeprecationWarningsAsync(easJsonAccessor: EasJsonAccessor, platform: Platform, profileName: string): Promise; private static getCustomPathsDeprecationWarnings; static getCliConfigAsync(accessor: EasJsonAccessor): Promise; static getSubmitProfileNamesAsync(accessor: EasJsonAccessor): Promise; static getSubmitProfileAsync(accessor: EasJsonAccessor, platform: T, profileName?: string): Promise>; } export {};