export interface RolloutOptions {
    isDebugging?: boolean;
    onUpdate?: (msg?: string) => void;
}
export declare function rolloutV3(releaseId: string, options?: RolloutOptions): Promise<{
    error: string;
    data: {
        releaseId: string;
        buildId: string;
    };
} | {
    error: string;
    data?: undefined;
} | {
    error: any;
    data: import("../../entities").IRelease;
}>;
//# sourceMappingURL=deploy-rollout-v3.d.ts.map