import React from 'react'; import { ViewProps } from 'react-native'; export declare type CounterProps = ViewProps & { variant?: 'secondary' | 'primary' | 'prominent' | 'badge'; /** * XS counter doesn't have any text and is represented as a colored badge. */ size?: 'xs' | 's' | 'm'; }; export declare const Counter: React.FC;