import { ThemeTypes } from '@viasat/beam-shared/utils/constants'; import * as React from 'react'; export interface RadioButtonProps extends React.ComponentPropsWithRef<'input'> { /** * Specify the text for the label */ label?: React.ReactNode; /** * Specify error text and display error state of a RadioButton * @default false */ error?: boolean; /** * Specify if RadioButton displays in a read-only state * @default false */ readOnly?: boolean; /** * Specify if RadioButton displays in a disabled state * @default false */ disabled?: boolean; /** * Specify the theme of the RadioButton. By default it inherits the theme from the parent */ theme?: ThemeTypes; } export declare const RadioButton: React.ForwardRefExoticComponent & React.RefAttributes>; export default RadioButton;