import type MethodInfo from "./method-info.js"; export default class ParameterInfo { private readonly _declaringMethod; private readonly _index; private readonly _name; get declaringMethod(): MethodInfo; get index(): number; get name(): string; constructor(name: string, index: number, declaringMethod: MethodInfo); }