import { XMLElement } from '../../common/soap/xmlElement';
import { SetTopBoxSyncStatus } from './setTopBoxSyncStatus';
import { CanoeSyncResult } from './canoeSyncResult';
export declare class SetTopBoxInfo extends XMLElement {
    protected static XSI_TYPE: string;
    syncStatus: SetTopBoxSyncStatus;
    lastSyncResult: CanoeSyncResult;
    lastSyncCanoeResponseMessage: string;
    nielsenProductCategoryCode: string;
    constructor(syncStatus?: SetTopBoxSyncStatus, lastSyncResult?: CanoeSyncResult, lastSyncCanoeResponseMessage?: string, nielsenProductCategoryCode?: string);
}
