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