import React from 'react'; import { NativeAttributes } from '../Box'; export declare type RadioProps = NativeAttributes<'input'> & { /** The label associated with the Radio. Appears on the right. */ label?: string; /** The size of the Radio. Defaults to `medium`. */ size?: 'medium' | 'large'; /** Whether the checkbox is currently disabled */ disabled?: boolean; /** Whether the input has an invalid value or not */ invalid?: boolean; }; declare const _default: React.MemoExoticComponent & React.RefAttributes>>; export default _default;