import type { FC } from "react";
import { RadioProps as MuiRadioProps } from "@mui/material/Radio";
/**
 * Types
 */
export interface RadioProps extends Omit<MuiRadioProps, "children"> {
    variant?: "default" | "bordered";
    className?: string;
}
/**
 * Components
 */
declare const Radio: FC<RadioProps>;
export default Radio;
