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