/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License.
 */
/**
 * Represents a view of an attachment.
 */
export interface AttachmentView {
    /**
     * The ID of the view.
     */
    viewId: string;
    /**
     * The size of the view.
     */
    size: number;
}
