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