import * as React from "react"; import { RadioInputProps } from "../RadioInput"; import { ViewProps } from "../View"; export interface RadioGroupProps extends ViewProps { id?: string; name: string; value?: string; key?: string; disabled?: boolean; direction?: "row" | "column"; space?: number; options: RadioInputProps[]; error?: boolean; } interface State { activeSelect: string | null; } declare class RadioGroup extends React.Component { constructor(props: RadioGroupProps); onChange: (event: React.ChangeEvent) => void; optionStyleMaker: (idx: number) => ViewProps; render(): JSX.Element; } export default RadioGroup;