import { KeypadProps, KeypadModalProps } from '@open-tender/ui'; import React, { ReactNode } from 'react'; declare const MadeForNotes: ({ subtitle, hasNotes, notes, setNotes, close, children, KeypadView, title }: { subtitle: string; hasNotes: boolean; notes: string | null; title: string; setNotes: (notes: string) => void; close: () => void; children: (props: KeypadModalProps) => ReactNode; KeypadView: (props: KeypadProps) => ReactNode; }) => React.ReactNode; export default MadeForNotes;