import React from 'react'; import { IProps, HTMLButtonProps } 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 RadioButtonProps extends IProps, Omit { size?: 'large' | 'default' | 'small'; checked?: boolean; disabled?: boolean; onChange?: (even: any) => void; } export declare const RadioButton: React.ForwardRefExoticComponent & React.RefAttributes>; export default RadioButton;