import { Calendar, Employee, SyncAccount } from ".";
export interface WithSyncAccounts<T = unknown> {
    sync_accounts: (SyncAccount & T)[];
}
export interface WithCalendars<T = unknown> {
    calendars: (Calendar & T)[];
}
export interface WithEmployees<T = unknown> {
    employees: (Employee & T)[];
}
//# sourceMappingURL=users.d.ts.map