import * as React from "react"; import { StructureProps } from "./system/unions"; export declare type StatelessRadioButtonFieldProps = { selected?: boolean; hasError?: boolean; disabled?: boolean; name: string; } & React.HTMLAttributes & StructureProps; export declare const StatelessRadioButtonField: { ({ selected, disabled, hasError, onChange, children, name, ...props }: StatelessRadioButtonFieldProps): JSX.Element; displayName: string; };