import React from 'react'; import { SelectChild, SelectOption } from './useSelect.types'; export declare function areOptionsEqual(option1: SelectOption, option2: SelectOption): boolean; export declare function getOptionsFromChildren(children: React.ReactNode): SelectChild[]; export declare function flattenOptionGroups(groupedOptions: SelectChild[], isGroupDisabled?: boolean): SelectOption[];