import { IDictionary } from '../types/Containers/IDictonary/IDictionary'; import { SimpleOption } from '../types/Options/SimpleOption'; /** * Converts string dictionaries to SimpleOption dictionary to be be used as the refiner.options property. * @param dict A string => string dictionary that should be converted to a SimpleOption dictionary */ export declare function toSimpleOptionDictionary(dict: IDictionary): IDictionary;