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