@open-tender/ui
Version:
A component library for use with the Open Tender web app
10 lines (9 loc) • 357 B
TypeScript
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;