import React from 'react'; import { View, type Text as RNText } from 'react-native'; import type { ControlFieldDescriptionProps, ControlFieldErrorProps, ControlFieldIndicatorProps, ControlFieldLabelProps, ControlFieldProps } from './types'; export declare const ControlField: import("../../core/factory").PlatformBlocksComponent<{ props: ControlFieldProps; ref: View; }> & { Label: React.FC; Description: React.ForwardRefExoticComponent>; Indicator: React.ForwardRefExoticComponent>; Error: React.ForwardRefExoticComponent>; Group: import("../../core/factory").PlatformBlocksComponent<{ props: import("./types").ControlFieldGroupProps; ref: View; }>; }; export type ControlFieldComponent = typeof ControlField;