import { Clearable } from '../../common/utils/Clearable'; import { AttachmentType } from '../model/AttachmentType'; import { AttachmentsClient } from './AttachmentsClient'; export declare class FakeAttachmentsClient implements AttachmentsClient, Clearable { private attachmentTypes; insertAttachmentType(attachmentType: AttachmentType): void; getTypes(): Promise; clear(): void; }