import { Params } from '../../Parameterization'; import { Optional } from '../../types.internal'; export declare class ParameterStore { private readonly _names; private readonly _params; private readonly _count; get count(): number; get names(): readonly string[]; constructor(params: readonly Params[], names: readonly string[]); hasParams(): boolean; getParams(index: number): Optional; }