import { Index } from "./SearchIndex";
export interface IndexSettings extends Index {
    searchableProperties: Array<string>;
    sortableProperties: Array<string>;
    filterableProperties: Array<string>;
}
