import { Money, NegativeMoney } from '@open-tender/types';
import React from 'react';
import { ScreenConfig } from '../types';
export interface CheckTotalsSublineProps {
    config: ScreenConfig;
    label: string;
    amount: Money | NegativeMoney;
}
declare const CheckTotalsSubline: ({ config, label, amount }: CheckTotalsSublineProps) => React.JSX.Element;
export default CheckTotalsSubline;
