import { ReactNode } from 'react';
import { RadioProps } from '../radio/radio.js';
export type RadioButtonProps = {
    children?: ReactNode;
} & RadioProps;
export declare const RadioButton: ({ label, disabled, className, children, ...props }: RadioButtonProps) => import("react/jsx-runtime").JSX.Element;
