import { InputButtonProps, ScreenConfig, Styles } from '@open-tender/ui'; import React, { ReactNode } from 'react'; declare const CheckoutTable: ({ label, labelStyle, openTable, InputButtonView, children }: { label: string; labelStyle?: Styles; openTable: () => void; InputButtonView: (props: InputButtonProps) => React.ReactNode; children: (props: { config: ScreenConfig; renderTableInput: () => ReactNode; }) => ReactNode; }) => React.ReactNode; export default CheckoutTable;