import { IgrPivotValue } from "./igr-pivot-value";
/**
 * Event emitted when values list is changed.
*/
export interface IgrValuesChange {
    /**
     * The new list of values.
    */
    values?: IgrPivotValue[];
}
