import React, { ReactNode } from 'react';
import { ScreenConfig } from '../types';
export interface CheckoutTotalsProps {
    config: ScreenConfig;
    displayGratuity?: boolean;
    renderCheckTotals: () => ReactNode;
}
declare const CheckoutTotals: ({ config, renderCheckTotals }: CheckoutTotalsProps) => React.JSX.Element;
export default CheckoutTotals;
