import { WithValidationError } from "../types/withValidationError"; import { SavedSearch } from "../types/models"; import { ApiCallOptions } from "../base"; export declare const sendSavedSearch: ({ savedSearch, options, }: { savedSearch: Omit; options?: ApiCallOptions; }) => Promise>>; export declare const deleteSavedSearch: ({ key, options, }: { key: string; options?: ApiCallOptions; }) => Promise; export declare const enableSavedSearch: ({ key, options, }: { key: string; options?: ApiCallOptions; }) => Promise; export declare const extendSavedSearch: ({ key, options, }: { key: string; options?: ApiCallOptions; }) => Promise; export declare const fetchSavedSearch: ({ key, options, }: { key: string; options?: ApiCallOptions; }) => Promise; export declare const sendSavedSearchFeedback: ({ reason, key, options, }: { reason: string; key: string; options?: ApiCallOptions; }) => Promise;