import { default as React } from 'react'; export type IndicatorProps = React.ComponentPropsWithoutRef<'div'> & { checked?: boolean; onCheckedChange?: (checked: boolean) => void; disabled?: boolean; }; export declare const Indicator: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & { checked?: boolean; onCheckedChange?: (checked: boolean) => void; disabled?: boolean; } & React.RefAttributes>;