
import * as React from 'react';


interface RadioProps {
  slot?: string;
  id?: string | number;
  className?: string;
  style?: React.CSSProperties;
  checked ?: boolean;
  name ?: number | string;
  value ?: number | string | boolean;
  disabled ?: boolean;
  readonly ?: boolean;
  label?: string;
  defaultChecked ?: boolean;
  color?: string;
  colorTheme?: string;
  textColor?: string;
  bgColor?: string;
  borderColor?: string;
  rippleColor?: string;
  themeDark?: boolean;
  onChange ?: (event?: any) => void;
  ref?: React.MutableRefObject<{el: HTMLElement | null}>;
  children?: React.ReactNode;
}
declare const Radio: React.FunctionComponent<RadioProps>;

export default Radio;
  