import { default as React } from 'react'; import * as RadixSelect from '@radix-ui/react-select'; export type GroupProps = React.ComponentPropsWithoutRef & { options?: string[]; label?: string; }; export declare const Group: React.ForwardRefExoticComponent, "ref"> & { options?: string[]; label?: string; } & React.RefAttributes>;