import { InferenceSession, SessionHandler } from 'onnxruntime-common'; export declare class OnnxruntimeWebAssemblySessionHandler implements SessionHandler { private sessionId; inputNames: string[]; outputNames: string[]; loadModel(model: Uint8Array, options?: InferenceSession.SessionOptions): Promise; dispose(): Promise; run(feeds: SessionHandler.FeedsType, fetches: SessionHandler.FetchesType, options: InferenceSession.RunOptions): Promise; startProfiling(): void; endProfiling(): void; }