/// import type { Application } from '../application/application.model'; import type { IFunction } from '../domain'; interface IFunctionProps { application: Application; functionDef: IFunction; } declare const Function: (props: IFunctionProps) => JSX.Element; export default Function;