import { InferenceHandler } from '../../backend'; import { Profiler } from '../../instrument'; import { CpuSessionHandler } from './session-handler'; export declare class CpuInferenceHandler implements InferenceHandler { readonly session: CpuSessionHandler; readonly profiler?: Readonly | undefined; constructor(session: CpuSessionHandler, profiler?: Readonly | undefined); dispose(): void; }