import { Text } from 'react-native'; import type { SelectItemState } from '../item/SelectItem'; import type { ZestUIComponentProps } from '../../types'; /** * The text label of a select item. * Renders a ``. * * Registers its text with the root so `Select.Value` can render the selected * item's label without the consumer duplicating the value-to-label mapping. */ export declare function SelectItemText(componentProps: SelectItemText.Props): import("react").ReactElement>; export interface SelectItemTextState extends SelectItemState { } export interface SelectItemTextProps extends ZestUIComponentProps { } export declare namespace SelectItemText { type State = SelectItemTextState; type Props = SelectItemTextProps; } //# sourceMappingURL=SelectItemText.d.ts.map