import * as React from "react"; import { StyleProp, ViewStyle } from "react-native"; export declare type RadioButtonProps = { selected: boolean; disabled?: boolean; color?: string; unselectedColor?: string; onPress?: () => void; style?: StyleProp; size?: number; selectedIcon?: string; unselectedIcon?: string; }; declare const RadioButton: React.FC; export default RadioButton; export declare const SEED_DATA: { name: string; tag: string; category: string; layout: { width: number; height: number; }; props: { selected: { label: string; description: string; formType: string; propType: string; defaultValue: boolean; editable: boolean; required: boolean; group: string; }; color: { group: string; label: string; description: string; editable: boolean; required: boolean; defaultValue: null; formType: string; propType: string; }; unselectedColor: { group: string; label: string; description: string; editable: boolean; required: boolean; defaultValue: null; formType: string; propType: string; }; disabled: { label: string; description: string; formType: string; propType: string; defaultValue: boolean; editable: boolean; required: boolean; group: string; }; onPress: { label: string; description: string; group: string; formType: string; propType: string; defaultValue: null; editable: boolean; required: boolean; }; size: { label: string; description: string; formType: string; propType: string; group: string; defaultValue: null; editable: boolean; required: boolean; min: number; step: number; }; selectedIcon: { label: string; description: string; formType: string; propType: string; defaultValue: string; required: boolean; editable: boolean; group: string; }; unselectedIcon: { label: string; description: string; formType: string; propType: string; defaultValue: string; required: boolean; editable: boolean; group: string; }; }; };