import * as React from 'react'; export interface IndicatorProps { /** * Adds a white border to the indicator */ bordered?: boolean; children: React.ReactNode; classNames?: { /** * It's empty dot. If you want to add classes to value or value's background, use `value` prop. */ dot?: string; indicator?: string; value?: string; wrapper?: string; }; position?: 'top' | 'bottom' | 'left' | 'right' | 'top-left' | 'bottom-left' | 'top-right' | 'bottom-right'; /** * If true, the indicator will be fully rounded. * @default true */ rounded?: string | boolean; value?: string | number; } declare const Indicator: React.FC; export { Indicator };