/** * @type SuggestedPhrase: Document representing a suggested search phrase. * * @property exactMatch: Returns whether this suggested phrase exactly matches the user input search phrase. * * @property phrase: Returns the suggested search phrase. * - **Min Length:** 1 * - **Max Length:** 50 * */ export type SuggestedPhrase = { exactMatch: boolean; phrase: string; } & { [key: string]: any; };