import React from 'react';
import { ILine } from '../Line/Line';
import { IColor, IVersion, IElement, IPropsAny } from '../types';
export declare type IRadios = Omit<ILine, 'onChange'> & {
    colorUnchecked?: IColor;
    version?: IVersion;
    name?: IElement;
    label?: IElement;
    uncheck?: boolean;
    valueDefault?: any;
    checkedDefault?: any;
    value?: any;
    checked?: any;
    onChange?: (value: any) => any;
    WrapperProps?: IPropsAny;
    LabelProps?: IPropsAny;
};
declare const Radios: React.FC<IRadios>;
export default Radios;
