/** * Checks whether an option for a component has been selected. * * @param {object} componentValue The option's value selected for that component. * @param {object} option The option of the component being tested. * * @returns A boolean of whether the option is selected. */ declare const optionIsSelected: (componentValue: any, option: any) => boolean; export default optionIsSelected;