import { Discount as DiscountType } from '@open-tender/types'; import { DiscountProps } from '@open-tender/ui'; import { ReactNode } from 'react'; declare const Discount: ({ discount, children, isSmall }: { discount: DiscountType; children: (props: DiscountProps) => ReactNode; isSmall?: boolean; }) => ReactNode; export default Discount;