import * as React from 'react'; import { View } from 'react-native'; import type { ZestUIComponentProps } from '../../types'; /** * Groups related select items with the corresponding label. * Renders a ``. */ export declare function SelectGroup(componentProps: SelectGroup.Props): React.JSX.Element; export interface SelectGroupState { } export interface SelectGroupProps extends ZestUIComponentProps { } export declare namespace SelectGroup { type State = SelectGroupState; type Props = SelectGroupProps; } //# sourceMappingURL=SelectGroup.d.ts.map