import HtmlNode from '../Extension/HtmlNode';
interface InputRadioFieldProps {
readonly title: string;
readonly value: string;
readonly name: string;
readonly description?: string;
readonly meta?: string;
readonly id: string;
readonly checked: boolean;
readonly disabled?: boolean;
readonly onClick?: (e: Event) => void;
}
declare class InputRadioField extends HtmlNode {
private readonly props;
constructor(element: HTMLDivElement | null, props: InputRadioFieldProps);
render(): void;
}
export default InputRadioField;