import React from "react"; import type { ControlledFormValue } from "../../internal/type"; export interface SignedAmountInputData { isIncrease: boolean; amount: number | null; } export interface Props extends ControlledFormValue { labels: [string, string]; onSignChange?: (isIncrease: boolean) => void; scale?: number; max?: number; } export declare const SignedAmountInput: (props: Props) => React.JSX.Element;