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 & { state: InputRadioStates; inputProps?: Partial; }; declare const RadioStateWrapper: FC; export default RadioStateWrapper;