import { FilterOptionsData } from './types/getFilters_new'; export declare const query = "\nquery getMetapropertyFilterOptions($smartfilterId: String!, $metapropertyId: String!, $cursor: String) {\n filterOptions(smartfilterId: $smartfilterId, metapropertyId: $metapropertyId, cursor: $cursor) {\n metadata {\n nextCursorMark\n }\n metaproperty {\n id,\n name,\n options {\n count,\n zindex,\n name,\n id,\n isSelected,\n label\n },\n showImage,\n type,\n label,\n showCounter,\n zindex\n }\n }\n}"; export declare const useGetFilterOptions: (options: { smartfilterId: string; metapropertyId: string; }, noCache?: boolean) => { isLoading: boolean; fetchFilterOptions: (cursor: string) => Promise; };