import type { ReactNode } from "react";
export interface RadioButtonProps {
    value: string;
    label: string;
    disabled?: boolean;
}
export declare function RadioButton({ value, label, disabled, }: RadioButtonProps): ReactNode;
//# sourceMappingURL=RadioButton.d.ts.map