import { AuthInformationState } from '../../auth/useAuthInformation'; type AutocompleteOption = { icon: string; id: string; isSelected: boolean; label: string; name: string; }; interface Response { hasNextPage?: boolean; metapropertyOptions?: Array; } export interface AutocompleteOptions extends Response { id?: string; } export declare const getAutocompleteOptions: ({ metapropertyId, auth, searchTerm, page, }: { metapropertyId: string; auth: AuthInformationState | null; searchTerm: string; page?: number | undefined; }) => Promise; export {};