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