import { FuncArgBase } from "./FuncArgBase.js"; import { ExpressionValue } from "../../../value/ExpressionValue.js"; import { ExprType } from "../../../type/ExprType.js"; export declare class FuncArgAny extends FuncArgBase { constructor(required: boolean, name: string, defaultValue?: ExpressionValue); getType(): ExprType; }