import { type FunctionalComponent as FC } from '../../stencil-public-runtime';
import { type InputProps } from '../../functional-components/inputs/Input';
import { type RadioProps } from '../../functional-components/inputs/Radio';
import { type InputRadioStates } from '../../schema';
export type RadioStateWrapperProps = Omit<RadioProps, 'inputProps'> & {
    state: InputRadioStates;
    inputProps?: Partial<InputProps>;
};
declare const RadioStateWrapper: FC<RadioStateWrapperProps>;
export default RadioStateWrapper;
