export declare class ExecutionTimeoutError extends Error {
    readonly timeTaken: number;
    constructor(message: string, timeTaken: number);
}
