import { AbsImage } from 'scriptable-abstract'; interface ImageMockState { size: Size; bytes: Data; } declare class MockImage extends AbsImage implements Image { constructor(); get size(): Size; getBytes(): Data; static fromData(data: Data): MockImage; static fromFile(_filePath: string): MockImage; static fromBase64String(base64String: string): MockImage; } export { MockImage };