import { InputState } from "../../../state/components/input/reducer";
import { StateSetters } from "../../../state/components/input/useStateSetters";
import { RadioGroupTValue } from "./reducer";
import { BaseState, DefaultState } from "../BaseState";
export type RadioGroupState = BaseState & InputState<RadioGroupTValue> & StateSetters<RadioGroupTValue>;
export type InitialRadioGroupState = {
    value?: string;
    disabled?: boolean;
};
export declare const DefaultRadioGroupState: DefaultState<RadioGroupState>;
