export interface CounterButtonProps { counter: number; max: number; alwaysShowCounter?: boolean; onAdd: () => void; hidePlusButton?: boolean; } export declare function CounterButton({ counter, max, onAdd, alwaysShowCounter, hidePlusButton }: CounterButtonProps): import("react/jsx-runtime").JSX.Element;