import { type VariantProps } from "class-variance-authority"; import * as React from "react"; export declare const COUNTER_SIZES: readonly ["xs", "sm", "md"]; declare const counterVariants: (props?: ({ size?: "md" | "sm" | "xs" | null | undefined; variant?: "ghost" | "ghost-secondary" | "highlight" | "highlight-secondary" | "outline" | "primary" | "warning" | "warning-secondary" | null | undefined; isInButton?: boolean | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface CounterProps extends React.HTMLAttributes, VariantProps { value: number; } export declare const Counter: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=Counter.d.ts.map