import { HTMLAttributes, ReactNode } from 'react';
export interface RadioLabelProps extends HTMLAttributes<HTMLLabelElement> {
    children: ReactNode;
    htmlFor?: string;
}
export declare const RadioLabel: import('react').ForwardRefExoticComponent<RadioLabelProps & import('react').RefAttributes<HTMLLabelElement>>;
