/** * Helper gets suggestion text * @param {SuggestionValue | undefined} suggestion - One suggestion. It can be string or number or object * @param {string | undefined} textField - Name of suggestion's field which contains text. Required if suggestion is object * * @returns {string} Suggestion text */ export declare const getSuggestionText: (suggestion?: string | number | import("../commonTypes").SomeObject | null | undefined, textField?: string | undefined) => string;