import { IAsyncArgdownPlugin, IAsyncRequestHandler } from "../IAsyncArgdownPlugin"; import { ISizeCalculationResult } from "image-size/dist/types/interface"; export declare class ImageSizePlugin implements IAsyncArgdownPlugin { name: string; runAsync: IAsyncRequestHandler; getSizeFromRemoteFile: (path: string) => Promise; }