import { FormFieldProps } from '../silke-form'; import React, { HTMLAttributes } from 'react'; type SilkeRadioButtonProps = FormFieldProps & Omit, 'onChange' | 'checkbox' | 'value' | 'style'> & { disabled?: boolean; required?: boolean; style?: React.CSSProperties; size?: 'micro' | 'small' | 'base' | 'large'; }; export declare function SilkeRadioButton(props: SilkeRadioButtonProps): import("react/jsx-runtime").JSX.Element; export {};