import { ReactNode } from 'react'; import { Style } from 'inlines'; type CounterProps = { children: ReactNode; color?: 'neutral' | 'inverted' | 'red' | 'green' | 'purple' | 'orange' | 'white'; style?: Style; }; export declare const Counter: ({ children, color, style, }: CounterProps) => import("react/jsx-runtime").JSX.Element; export type { CounterProps };