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