import React from 'react'; import { ColorValue } from 'react-native'; type IndicatorProps = { /** * @property The name of the icon to use. Can be an id for dynamic icons or a static value. */ name: string; color?: ColorValue; scale?: number; /** * @property A icon name to fallback to if `name` is not found */ fallbackName?: string; }; export declare const INDICATOR_HEIGHT = 20; export declare const aliases: Record; declare const Indicator: ({ name, scale, fallbackName, ...rest }: IndicatorProps) => React.JSX.Element; export default Indicator;