import { AggregationType, DimensionalAttribute, LevelAttribute } from '@sisense/sdk-data'; type MeasureConfig = { titleKey: string; name: AggregationType; merged?: boolean; class: string; group: string; }; /** * @internal */ export declare function getMeasuresListForAttribute(attribute: DimensionalAttribute | LevelAttribute): MeasureConfig[]; export {};