import { SyncLicenseEnum } from './SyncLicenseEnum';
import { ObjectStateEnum } from './ObjectStateEnum';
/** Sync account information */
export interface SyncInformation {
    /** Indicates if the account is configured */
    configured: boolean;
    /** Sync account license */
    license: SyncLicenseEnum;
    /** Sync account state */
    state: ObjectStateEnum;
    /** Pending task for this sync account */
    taskPendingId: number;
}
//# sourceMappingURL=SyncInformation.d.ts.map