export declare const ALL_MEASURE_OPTION_TYPES: readonly ["COUNT", "PERCENT", "SUM", "AVG", "MIN", "MAX"]; export declare type MeasureOptionType = typeof ALL_MEASURE_OPTION_TYPES[number]; export interface MeasureOption { /** Display value for the option */ label: string; /** Type of measure */ type: MeasureOptionType; /** Whether the option requires a variable selection */ requiresVariable?: boolean; } export declare const MEASURE_OPTIONS: Record;