import { CONSTANT } from './CONSTANT';
import { ABCFile } from './ABCFile';
import { Multiname } from './Multiname';
export declare class ParameterInfo {
    readonly abc: ABCFile;
    readonly typeName: Multiname;
    /**
     * Don't rely on the name being correct.
     */
    name: string;
    optionalValueKind: CONSTANT | number;
    optionalValueIndex: number;
    constructor(abc: ABCFile, typeName: Multiname);
    hasOptionalValue(): boolean;
    getOptionalValue(): any;
    toString(): string;
}
//# sourceMappingURL=ParameterInfo.d.ts.map