export interface WOIRadioButtonProps {
    size: number;
    activeBorderColor?: string;
    inActiveBorderColor?: string;
    borderWidth?: number;
    activeColor?: string;
    inActiveColor?: string;
    isSelected: boolean;
    clickFunction?: () => void;
}
declare const WOIRadioButton: (props: WOIRadioButtonProps) => import("react/jsx-runtime").JSX.Element;
export default WOIRadioButton;
