import { type StateProp } from '@innet/dom'; import { type FlexProps } from '../../layout'; import { type CheckProps } from '../../prototypes'; export interface RadioItem extends CheckProps { value: StateProp; } export interface RadioboxProps extends Omit { value?: StateProp; values?: StateProp; disabled?: StateProp; name?: StateProp; onchange?: (value: string) => void; } export declare function Radiobox({ values, value, onchange, name, disabled, ...props }?: RadioboxProps): any;