/** * @license * Copyright (c) 2025 Handsoncode. All rights reserved. */ import { FunctionPlugin, FunctionPluginTypecheck, ImplementedFunctions } from './FunctionPlugin'; import { InterpreterState } from '../InterpreterState'; import { InterpreterValue } from '../InterpreterValue'; import { ProcedureAst } from '../../parser'; export declare class HyperlinkPlugin extends FunctionPlugin implements FunctionPluginTypecheck { static implementedFunctions: ImplementedFunctions; hyperlink(ast: ProcedureAst, state: InterpreterState): InterpreterValue; }