type NumberInputProps = {
    amount?: number;
    itemCallback?: (amount?: number | null, isVariant?: boolean) => void;
    getAmountValue?: (amount?: number | null) => void;
    minValue?: number;
    maxValue?: number;
    controls?: boolean;
};
export declare const NumberInput: ({ amount, minValue, maxValue, getAmountValue, itemCallback, controls, }: NumberInputProps) => import("@emotion/react/jsx-runtime").JSX.Element;
export {};
