import React from 'react';
import type { FunCheckoutStep, ModalStepComponentProps } from '../stepTransition';
interface InputAmountLoadingProps extends ModalStepComponentProps<FunCheckoutStep.INPUT_AMOUNT> {
    sourceHoldingError: Error | null;
    unitPriceError: Error | null;
}
export declare function InputAmountLoading({ modalState, onBack, sourceHoldingError, unitPriceError, }: InputAmountLoadingProps): React.JSX.Element;
export {};
