import type { ClientType } from '@/client'; import type { DealUuid } from '@/models/deal/dealUuid.model.ts'; import type { WithFilterQuery } from '@/types/query.type'; export interface MailIndexQueryParams extends WithFilterQuery<{ clientUuid?: string; dealUuid?: DealUuid; clientType?: ClientType; }> { }