declare const syncTypeArray: readonly ["CREATE_CUSTOMER", "UPDATE_USER", "UPDATE_CLIENT", "AVALARA_EXEMPT", "AVALARA_EXEMPT_REMOVE", "AVALARA_ITEM", "CREATE_DEVICE", "REMOVE_DEVICE", "UPDATE_DEVICE", "SUSPEND_DEVICE", "UNSUSPEND_DEVICE", "CANCEL_DEVICE"]; export type SyncType = (typeof syncTypeArray)[number]; export declare class M2Sync { id: number; clientId: number | null; userId: string | null; email: string | null; braintreeCustomerId: string | null; paymentMethodToken: string | null; subscriptionId: string | null; imei: string | null; syncType: SyncType | null; status: boolean; createdAt: Date; } export {};