import type { JSONObject } from 'tiny-types';
import { TinyType } from 'tiny-types';
import { Description } from './Description';
import { Name } from './Name';
export declare class ScenarioParameters extends TinyType {
    readonly name: Name;
    readonly description: Description;
    readonly values: {
        [parameter: string]: string;
    };
    static fromJSON(o: JSONObject): ScenarioParameters;
    constructor(name: Name, description: Description, values: {
        [parameter: string]: string;
    });
}
//# sourceMappingURL=ScenarioParameters.d.ts.map