import type ActivityContext from "./ActivityContext"; import type { IMonikerFrame } from "./IDebugSession"; import type { Task } from "../Task"; declare class MonikerFrame implements IMonikerFrame { cancellationToken: Task; current?: ActivityContext; index: number; state: Record; cancellationResolve: () => void; } export {};