import { default as React, InputHTMLAttributes } from 'react';
import { ColorType } from '../../../utils';
declare const radioVariants: (props?: ({
colorType?: "gray" | "pink" | "red" | "orange" | "yellow" | "lime" | "green" | "mint" | "skyblue" | "blue" | "indigo" | "purple" | null | undefined;
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
type RadioButtonProps = Pick, 'onChange'> & {
colorType: ColorType;
name: string;
value: ValueType;
disabled?: boolean;
checked: boolean;
};
declare const RadioButton: React.FC;
export type { RadioButtonProps };
export { RadioButton, radioVariants };
//# sourceMappingURL=index.d.ts.map