import { Compiler } from './compiler';
export declare class Program {
    private __compiler;
    private __id;
    constructor(engine: Compiler, id: string);
    readonly isDestroyed: boolean;
    run<T = any>(params?: object): Promise<T>;
    destroy(): void;
}
