import * as React from 'react'; import '@vtmn/css-radio-button/dist/index-with-vars.css'; export interface VtmnRadioButtonProps extends React.ComponentPropsWithoutRef<'input'> { /** * The id of the radio. * @type {string} */ identifier: string; /** * The label of the radio. * @type {string} * @defaultValue undefined */ labelText?: string; /** * The checked state of the radio. * @type {boolean} * @defaultValue false */ checked?: boolean; /** * The default checked state of the radio (for uncontrolled mode combined with a "name" attribute). * @type {boolean} * @defaultValue undefined */ defaultChecked?: boolean; /** * The disabled state of the radio. * @type {boolean} * @defaultValue false */ disabled?: boolean; } export declare const VtmnRadioButton: React.ForwardRefExoticComponent>; declare const MemoVtmnRadioButton: React.MemoExoticComponent>>; export default MemoVtmnRadioButton;