import { CheckoutProps, Handlers } from '@open-tender/ui'; import { ReactNode } from 'react'; declare const CheckoutContainer: ({ handlers, title, subtitle, headerContent, content, backTitle, proceedTitle, showFooter, showBottomText, renderHeader, renderTotals, children, showViewOrder, isScrollable, hasError }: { handlers: Handlers; title: string; subtitle?: string | null; headerContent?: ReactNode; content: ReactNode; backTitle: string; showFooter?: boolean; proceedTitle?: string; showBottomText?: boolean; showViewOrder?: boolean; renderHeader: () => ReactNode; renderTotals?: () => ReactNode; children: (props: CheckoutProps & { showFooter?: boolean; showBottomText?: boolean; showViewOrder?: boolean; isScrollable?: boolean; hasError?: boolean; }) => ReactNode; isScrollable?: boolean; hasError?: boolean; }) => ReactNode; export default CheckoutContainer;