import { DistributionType, IosEnterpriseProvisioning } from '@expo/eas-json'; import { JSONObject } from '@expo/json-file'; import { IosAppBuildCredentialsFragment } from '../../../graphql/generated'; import { CredentialsContext } from '../../context'; import { AppLookupParams as GraphQLAppLookupParams } from '../api/graphql/types/AppLookupParams'; import { Target } from '../types'; interface Options { app: GraphQLAppLookupParams; distribution: DistributionType; enterpriseProvisioning?: IosEnterpriseProvisioning; entitlements: JSONObject; target: Target; } export declare class SetUpTargetBuildCredentials { private readonly options; constructor(options: Options); runAsync(ctx: CredentialsContext): Promise; setupBuildCredentialsAsync(ctx: CredentialsContext): Promise; } export {};