import { ReactNode } from 'react'; declare type Address = { city?: string; }; interface RorSuggestion { name: string; id: string; addresses: Address[]; } export interface IRorDisplayOption { label?: string | ReactNode; value: string; key?: string; } export declare const fetchRorSuggestions: (searchTerm: string) => Promise; export declare const prepareOptionsForDisplay: (options: RorSuggestion[]) => IRorDisplayOption[]; export {};