/// import { SelectGroupPropsHelper } from './SelectGroupPropsHelper'; export interface MultiStringSelectGroupProps extends SelectGroupPropsHelper { } /** A `` dropdown with values as strings. Multiple options can be selected at a time. */ export declare function MultiStringSelectGroup(props: MultiStringSelectGroupProps): JSX.Element; export interface SingleStringSelectGroupProps extends SelectGroupPropsHelper { } /** A `` dropdown with the value as a string. Only one option can be selected at a time. */ export declare function SingleStringSelectGroup(props: SingleStringSelectGroupProps): JSX.Element;