/** * Converts ref data items to options. * @param {Array} refDataItems An array of ref data items. * @param {Object} itemStructure The structure of the item. * @returns An array of options. */ declare const refDataToOptions: (refDataItems: any, itemStructure: any) => any[]; export default refDataToOptions;