import React from "react"; import type { ControlledFormValue } from "../../internal/type"; export declare enum Operator { GREATER_THAN = "GREATER_THAN", GREATER_EQUAL = "GREATER_EQUAL", LESS_THAN = "LESS_THAN", LESS_EQUAL = "LESS_EQUAL", EQUALS = "EQUALS", NOT_EQUALS = "NOT_EQUALS" } export interface AmountConditionValue { condition: Operator; amount: number | null; } export interface Props extends ControlledFormValue { scale: number; operators?: Operator[]; } export declare const AmountConditionInput: (props: Props) => React.JSX.Element;