import { BaseInputProps } from "@components/Input/Input.interface"; import { InputTexts, TComponentIcon } from "@helpers/types"; import { HTMLAttributes, InputHTMLAttributes } from "react"; export declare enum ActionType { INCREMENT = "INCREMENT", DECREMENT = "DECREMENT" } export interface InputQuantityProps extends InputTexts, Omit, "id">, Required> { handleCounterButtonClick?(value: number): void; toFixedValue?: number; decreaseButtonProps?: Pick; increaseButtonProps?: Pick; inputClassName?: string; } export interface ButtonProps extends HTMLAttributes { icon: TComponentIcon; disabled?: boolean; variant: ActionType; }