import { CheckboxLabelPosition } from './Checkbox.types'; export interface BuildCheckboxClassNameInput { disabled?: boolean; labelPosition?: CheckboxLabelPosition | string | null; className?: string | null; } export declare function buildCheckboxId(id: string | undefined, generatedId: string): string; export declare function buildCheckboxClassName({ disabled, labelPosition, className, }: BuildCheckboxClassNameInput): string; export declare function buildCheckboxInputClassName(inputClassName?: string | null): string; export declare function buildCheckboxLabelClassName(labelClassName?: string | null): string; export declare function toCheckboxStateLabel(checked: boolean, labelPosition: CheckboxLabelPosition | string | null | undefined): string;