import { FC, HTMLAttributes } from 'react';
export type CheckboxIndicatorProps = HTMLAttributes;
/**
* `CheckboxIndicator` is a structural subcomponent of `Checkbox` that
* acts as a container for visual state indicators, such as the checked
* and indeterminate icons.
*
* It does not contain any logic or state by itself and serves purely
* as a presentational wrapper. The visibility, transitions, and layout
* of its children are controlled by surrounding Checkbox styles and
* state propagation.
*/
export declare const CheckboxIndicator: FC;