/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License.
 */
import { AttachmentView } from './attachmentView';
/**
 * Represents information about an attachment.
 */
export interface AttachmentInfo {
    /**
     * The name of the attachment.
     */
    name: string;
    /**
     * The type of the attachment.
     */
    type: string;
    /**
     * The views of the attachment.
     */
    views: AttachmentView[];
}
