import { TenantAccount } from './types'; /** * 获取时区列表 * @param params * @returns */ export declare const getTimezoneList: (params: any) => Promise; /** * 获取所有成员列表 (用于选择添加) * GET: /tenant/account */ export declare const getAllMembers: (params?: { page?: number; size?: number; search?: string; with?: string[]; }) => Promise<{ list: TenantAccount[]; }>; /** * 根据id列表获取团队成员列表 * @param params * @returns */ export declare const getGroupMembers: (params: { ids: number[]; }) => Promise;