import type { FC, DetailedHTMLProps, HTMLAttributes } from 'react'; export interface PharosRadioButtonProps extends DetailedHTMLProps, HTMLElement> { /** * Indicates if radio is checked. */ checked?: boolean; /** * Indicates the value for the input. */ value?: string; /** * Name for the form element. */ name?: string; /** * Indicates if input is required. */ required?: boolean; /** * Indicates if input is disabled. */ disabled?: boolean; /** * Indicates an invalidated state. */ invalidated?: boolean; /** * Indicates a validated state. */ validated?: boolean; /** * The message to display below the input. */ message?: string; /** * Indicates if the label should be hidden. */ hideLabel?: boolean; } export declare const PharosRadioButton: FC; //# sourceMappingURL=pharos-radio-button.d.ts.map