export type InterruptHandle = {
    __id: number;
};
export declare function runInterruptible<Ret>(fn: (handle: InterruptHandle) => Ret): Ret | void;
export declare function interrupt(handle: InterruptHandle): void;
