import { _GraphQueryableInstance } from "../graphqueryable.js"; import { Photo as IPhotoType } from "@microsoft/microsoft-graph-types"; export declare class _Photo extends _GraphQueryableInstance { /** * Gets the image bytes as a blob (browser) */ getBlob(): Promise; /** * Gets the image file bytes as a Buffer (node.js) */ getBuffer(): Promise; /** * Sets the file bytes * * @param content Image file contents, max 4 MB */ setContent(content: ArrayBuffer | Blob): Promise; } export interface IPhoto extends _Photo { } export declare const Photo: (baseUrl: string | import("../graphqueryable.js").IGraphQueryable, path?: string) => IPhoto & import("@pnp/odata-commonjs").IInvokable; //# sourceMappingURL=types.d.ts.map