import { Variable } from '@mtna/pojo-consumer-ts'; import { VariableSummary } from '@mtna/variable-service-core-ts'; import { MeasureOptionType } from './measure-option.model'; export declare class MeasureSelection { measureType: MeasureOptionType; variable?: V | undefined; /** * @param measureType Type of measure * @param variable The selected variable for when the `MeasureOption` requires a variable selection */ constructor(measureType: MeasureOptionType, variable?: V | undefined); }