import { SelectedDataInput, AvailableSlots } from '../models/filters.model'; export declare const selectedDataUtils: { merge(...filters: SelectedDataInput[]): SelectedDataInput; isIn(slot: AvailableSlots, values: string[] | number[], otherOptions?: any): SelectedDataInput; between(slot: AvailableSlots, values: [string | number, string | number], otherOptions?: any): SelectedDataInput; range(slot: AvailableSlots, values: [string | number, string | number], otherOptions?: any): SelectedDataInput; };