export declare const DisplayNames: { root: { elementDisplayName: string; data: { checked: string; defaultChecked: string; required: string; readOnly: string; disabled: string; indeterminate: string; label: string; tooltip: string; }; cssCustomProperties: { gap: string; alignment: string; }; }; indicator: { elementDisplayName: string; cssCustomProperties: { uncheckedBackgroundColor: string; uncheckedBorderColor: string; checkedBackgroundColor: string; checkedBorderColor: string; borderWidth: string; checkmarkColor: string; size: string; }; }; label: { elementDisplayName: string; }; }; export declare const DesignStates: { readonly indicator: { readonly hover: { readonly displayName: "Hover"; readonly className: "checkbox__indicator--hover"; }; readonly focus: { readonly displayName: "Focus"; readonly className: "checkbox__indicator--focus"; }; readonly disabled: { readonly displayName: "Disabled"; readonly className: "checkbox__indicator--disabled"; }; readonly invalid: { readonly displayName: "Invalid"; readonly className: "checkbox__indicator--invalid"; }; }; }; export declare const defaultValues: { readonly label: "Label"; readonly checked: false; readonly defaultChecked: false; readonly required: false; readonly readOnly: false; readonly disabled: false; readonly indeterminate: false; readonly tooltip: ""; }; export declare const TestIds: { readonly root: "checkbox-root"; readonly control: "checkbox-control"; readonly indicator: "checkbox-indicator"; readonly label: "checkbox-label"; readonly requiredIndicator: "checkbox-required-indicator"; readonly tooltipButton: "checkbox-tooltip-button"; }; export declare const selectors: { readonly root: "checkbox"; readonly indicator: "checkbox__indicator"; readonly label: "checkbox__label"; }; export declare const semanticClassNames: { readonly root: "checkbox"; readonly control: "checkbox__control"; readonly indicator: "checkbox__indicator"; readonly label: "checkbox__label"; readonly requiredIndicator: "checkbox__required-indicator"; };