import { Callable } from "../brsTypes"; import * as Expr from "../parser/Expression"; /** * Converts a Function expression to a BrightScript callable representation so * that it can be executed. * * @param func the function expression to convert * @param name the name of the function to convert (defaults to `[Function]`) * * @returns a `Callable` version of that function */ export declare function toCallable(func: Expr.Function, name?: string): Callable;