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