/*! * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. */ import { Core } from "../main.js"; export declare class LocalFile { constructor(core: Core); loadText(file: File, completed: (text: string) => void, failed: (e: string) => void): void; loadImage(file: File, completed: (image: HTMLImageElement) => void, failed: (e: string) => void): void; loadArrayBuffer(file: File, completed: (buffer: ArrayBuffer) => void, failed: (e: string) => void): void; }