import * as React from "react"; import { CommonStyleProps } from "./system/unions"; export declare type IndicatorProps = CommonStyleProps & { disabled?: boolean; selected?: boolean; hasError?: boolean; }; export declare const Indicator: import("styled-components").StyledComponent<"div", any, React.PropsWithChildren, never>;