/**
 * Formats and returns the passed items, adds flag string
 * @param item - prefix
 * @returns item with added displayable name and image
 */
export declare const formatPrefixName: (item: any) => any;
/** Finds id in list of items, returns it on match
 * @param items - list of items
 * @param countryCode - the item to select
 * @returns item or false
 */
export declare const selectItem: (items: any, countryCode: any) => any;
