import { BoxProps } from '@bnb-chain/space'; interface AllowedSendAmountProps { isError?: boolean; allowedSendAmount?: { min: string; max: string; } | null; } export declare const AllowedSendAmount: ({ isError, allowedSendAmount, ...otherProps }: BoxProps & AllowedSendAmountProps) => import("react/jsx-runtime").JSX.Element | null; export {};