import * as React from "react"; import { StyleProp, ViewStyle } from "react-native"; import type { Theme } from "../../styles/DefaultTheme"; import { Direction } from "./context"; export interface RadioButtonGroupProps { direction?: Direction; style?: StyleProp; value: string; onValueChange: (value: string) => void; theme: Theme; children: React.ReactNode; } declare const RadioButtonGroup: React.FC; export default RadioButtonGroup; export declare const SEED_DATA: { name: string; tag: string; category: string; props: { direction: any; value: any; fieldName: { handlerPropName: string; group: string; label: string; description: string; formType: string; propType: string; defaultValue: null; valuePropName: string; editable: boolean; required: boolean; }; }; layout: {}; };