import type { PublicFileReference } from '@/models/file-reference/fileReference.model'; import type { MailCreateForm } from '@/models/mail/create/mailCreateForm.model.ts'; import type { MailIndex } from '@/models/mail/index/mailIndex.model.ts'; import type { MailIndexQueryParams } from '@/models/mail/index/mailIndexQueryParams.model'; import type { MailUuid } from '@/models/mail/mailUuid.model.ts'; import type { OffsetPagination } from '@/types/pagination.type'; export declare class MailService { static create(form: MailCreateForm, externalAttachments: PublicFileReference[]): Promise; static getAll(params: OffsetPagination): Promise; }