import type { FC, DetailedHTMLProps, HTMLAttributes } from 'react'; export interface PharosRadioGroupProps extends DetailedHTMLProps, HTMLElement> { /** * Dictate if radio buttons should be displayed horizontally */ horizontal?: boolean; /** * Indicates the selected radio for the group */ readonly 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 PharosRadioGroup: FC; //# sourceMappingURL=pharos-radio-group.d.ts.map