import * as React from "react"; declare type Item = { value: string; text: string; }; declare type Group = { key: string; items: Item[]; }; declare type Props = { icon?: React.ReactNode; value: string; groups: Group[]; divider?: string; hideNativeText?: boolean; onChange: (value: string) => void; }; declare const NativeGroupedSelect: ({ icon, value, groups, divider, hideNativeText, onChange, }: Props) => JSX.Element; export default NativeGroupedSelect;