import { VariantProps } from 'class-variance-authority'; import { ComponentProps, ReactNode } from 'react'; declare const indicator: (props?: ({ variant?: "accent" | "danger" | "success" | "neutral" | "warning" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface IndicatorProps extends ComponentProps<'div'>, VariantProps { label?: string; children?: ReactNode; 'aria-label'?: string; classNames?: { /** @deprecated Use `[data-slot="indicator"]` instead. */ container?: string; }; } export declare const Indicator: { ({ className, classNames, variant, label, children, "aria-label": ariaLabel, ...props }: IndicatorProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export {}; //# sourceMappingURL=indicator.d.ts.map