import { Attachment as IAttachmentType } from "@microsoft/microsoft-graph-types"; import { _GraphQueryableCollection, _GraphQueryableInstance } from "../graphqueryable.js"; import { IGetById } from "../decorators.js"; /** * Attachment */ export declare class _Attachment extends _GraphQueryableInstance { } export interface IAttachment extends _Attachment { } export declare const Attachment: (baseUrl: string | import("../graphqueryable.js").IGraphQueryable, path?: string) => IAttachment & import("@pnp/odata-commonjs").IInvokable; /** * Attachments */ export declare class _Attachments extends _GraphQueryableCollection { /** * Add attachment to this collection * * @param name Name given to the attachment file * @param bytes File content */ addFile(name: string, bytes: string | Blob): Promise; } export interface IAttachments extends _Attachments, IGetById { } export declare const Attachments: (baseUrl: string | import("../graphqueryable.js").IGraphQueryable, path?: string) => IAttachments & import("@pnp/odata-commonjs").IInvokable; //# sourceMappingURL=types.d.ts.map