import { ICheckboxStyles } from './Checkbox.types';
export interface ICheckboxClassNames {
    root: string;
    label: string;
    checkbox: string;
    checkmark: string;
    text: string;
}
export declare const getClassNames: (styles: ICheckboxStyles, disabled: boolean, isChecked: boolean, isReversed: boolean, className?: string | undefined) => ICheckboxClassNames;
