import { ErrorMessageProps, KeypadProps, PromoCodeProps } from '@open-tender/ui'; import React, { ReactNode } from 'react'; declare const PromoCode: ({ close, children, KeypadView, ErrorMessageView }: { close: () => void; children: (props: PromoCodeProps) => ReactNode; KeypadView: (props: KeypadProps) => ReactNode; ErrorMessageView: (props: ErrorMessageProps) => ReactNode; }) => React.ReactNode; export default PromoCode;