import { Deployment, NowClientOptions, DeploymentBuild, DeploymentEventType } from './types'; interface DeploymentStatus { type: DeploymentEventType; payload: Deployment | DeploymentBuild[]; } export declare function checkDeploymentStatus(deployment: Deployment, clientOptions: NowClientOptions): AsyncIterableIterator; export {};