import { YUIComponent } from './component';

/** RadioGroup Component */
export declare class YRadioGroup extends YUIComponent {
  /** The value of Radio
   * You can use v-model too
   */
  value: boolean | string | number;

  /** Disable the RadioGroup */
  disabled: boolean;

  /**
   * The type of Radio
   */
  type: 'circle' | 'check';

  /**
   * Triggered when the state of the radio changes
   * @type Function
   */
  change(checked: boolean, e: Event): void;
}
