export declare class TNSAcquisitionManager {
    private codePushSDK;
    constructor(deploymentKey: string, serverUrl: string);
    queryUpdateWithCurrentPackage(currentPackage: IPackage, callback?: Callback<IRemotePackage | NativeUpdateNotification>): void;
    reportStatusDeploy(pkg?: IPackage, status?: string, previousLabelOrAppVersion?: string, previousDeploymentKey?: string): void;
    reportStatusDownload(pkg: IPackage): void;
}
