///
import { StyleObject } from "styletron-react";
export declare type RadioOverridesT = {
Wrap?: StyleObject;
};
export declare type RadioPropsT = {
label?: string;
checked?: boolean;
value?: string;
name?: string;
required?: boolean;
onChange?: (event: React.FocusEvent) => void;
overrides?: RadioOverridesT;
};