import React from 'react';
export type Props = {
    readonly isSelected?: boolean;
};
declare function Indicator({ isSelected }: Props): React.JSX.Element;
export default Indicator;
