import { HttpClient, NonNullablePaths, MaybeContext, BuildRESTFunction } from '@wix/sdk-types'; import { ListCustomFieldSuggestionsOptions, ListCustomFieldSuggestionsResponse, SuggestionsQueryBuilder, CustomFieldSuggestionQuery, typedQueryCustomFieldSuggestions } from './index.typings.js'; export { AddressLocation, CommonQueryWithEntityContext, CustomFieldSuggestion, CustomFieldSuggestionQuerySpec, ListCustomFieldSuggestionsRequest, Origin, OriginWithLiterals, Paging, PagingMetadata, Privacy, PrivacyWithLiterals, Query, QueryCustomFieldSuggestionsRequest, QueryCustomFieldSuggestionsResponse, SocialTypeType, SocialTypeTypeWithLiterals, SortOrder, SortOrderWithLiterals, Sorting, SuggestionsQueryResult, Type, TypeWithLiterals, utils } from './index.typings.js'; declare function listCustomFieldSuggestions$1(httpClient: HttpClient): ListCustomFieldSuggestionsSignature; interface ListCustomFieldSuggestionsSignature { /** * Retrieves a list of suggestions for both custom fields and existing fields available from the Wix Members Area. */ (options?: ListCustomFieldSuggestionsOptions): Promise>; } declare function customQueryCustomFieldSuggestions(httpClient: HttpClient): { (): SuggestionsQueryBuilder; (query: CustomFieldSuggestionQuery): ReturnType; }; declare const listCustomFieldSuggestions: MaybeContext & typeof listCustomFieldSuggestions$1>; declare const queryCustomFieldSuggestions: MaybeContext & typeof customQueryCustomFieldSuggestions>; export { CustomFieldSuggestionQuery, ListCustomFieldSuggestionsOptions, ListCustomFieldSuggestionsResponse, SuggestionsQueryBuilder, listCustomFieldSuggestions, queryCustomFieldSuggestions };