import type { FC } from 'react';
export interface Props {
    isSelected?: boolean;
}
declare const Indicator: FC<Props>;
export default Indicator;
