export type CheckboxIndicatorVariant = "default" | "editor"; export type CheckboxIndicatorProps = { /** Color variant — `default` for the standard accent fill, `editor` for the muted on-canvas style. */ variant?: CheckboxIndicatorVariant; /** Pass-through className — useful for adding a focus-ring from an ancestor group (see Checkbox). */ className?: string; }; /** * Pure visual 20×20 checkbox indicator. Reads its state from the nearest * `RadixCheckboxRoot` via Radix's `data-state` attribute (no prop plumbing). * * Drop this inside any `RadixCheckboxRoot` to get the standard DS checkbox * visuals — the standalone `Checkbox` and the `CheckboxPullDown` both consume * it. */ export declare const CheckboxIndicator: ({ variant, className }: CheckboxIndicatorProps) => import("react").JSX.Element; //# sourceMappingURL=CheckboxIndicator.d.ts.map