import { EASUpdateAction, EASUpdateContext } from '../../eas-update/utils'; import { UpdateChannelBasicInfoFragment } from '../../graphql/generated'; export type NonInteractiveOptions = { branchNameToRollout: string; percent: number; runtimeVersion: string; }; /** * Create a rollout for the project. */ export declare class CreateRollout implements EASUpdateAction { private readonly channelInfo; private readonly options; constructor(channelInfo: UpdateChannelBasicInfoFragment, options?: Partial); runAsync(ctx: EASUpdateContext): Promise; private confirmCreationAsync; private getChannelObjectAsync; private getLatestUpdateGroupOnBranchAsync; private selectRuntimeVersionAsync; private selectRuntimeVersionFromAlternativeSourceAsync; private selectRuntimeVersionFromProjectConfigAsync; private selectBranchAsync; private resolveBranchNameAsync; }