import React from 'react';
import { IProps, HTMLInputProps } from '@uiw/utils';
/**
* Constructs a type by picking all properties from `HTMLInputProps` and then removing `size`.
* Omit: https://www.typescriptlang.org/docs/handbook/utility-types.html#omittk
*/
export interface RadioAbstractProps extends IProps, Omit {
size?: 'large' | 'default' | 'small';
checked?: boolean;
disabled?: boolean;
onChange?: (even: React.ChangeEvent) => void;
}
export declare const RadioAbstract: React.ForwardRefExoticComponent>;