import { MenuOptionType } from "../../../../../../controls"; import { CacheConfiguration } from "../../../models/CacheConfiguration"; type Props = { setConfiguration: Function; setShowUpsertModal: Function; setShowDeleteModal: Function; onClearCache: (configuration: CacheConfiguration) => void; }; export declare const useQueryCacheOptionsFunctions: ({ setConfiguration, setShowUpsertModal, setShowDeleteModal, onClearCache, }: Props) => { getMenuOptions: (data: CacheConfiguration) => MenuOptionType[]; }; export {};