import { GestureResponderEvent } from 'react-native';
type Props = {
    closeModal: ((event: GestureResponderEvent) => void) | null | undefined;
    onPressContinue: (transactionId: string) => void;
};
declare const InterestCalculation: (props: Props) => import("react/jsx-runtime").JSX.Element;
export default InterestCalculation;
