import { type IntlShape } from 'react-intl-next'; import { type LinkPickerPlugin, type LinkSearchListItemData } from '../../common/types'; /** * Retrieve the data source for a link given the item and the plugin that resolved it */ export declare const getDataSource: (item: LinkSearchListItemData, plugin?: LinkPickerPlugin) => string; export declare function getScreenReaderText(items: LinkSearchListItemData[], selectedIndex: number, intl: IntlShape): string | undefined;