import { default as React } from 'react'; import { PriceFormatter } from '../../atoms/Price'; export type QuickOrderDrawerFooterProps = { formatter?: PriceFormatter; /** * Text labels for CMS configuration */ labels?: { itemsLabel?: string; addToCartLabel?: string; addToCartAriaLabel?: string; }; }; declare const QuickOrderDrawerFooter: ({ formatter, labels, }: QuickOrderDrawerFooterProps) => React.JSX.Element; export default QuickOrderDrawerFooter; //# sourceMappingURL=QuickOrderDrawerFooter.d.ts.map