import { FC } from 'react'; interface InputWithModalProps { /** title for modal */ title: string; value?: string; children: ({ closeModal }: { closeModal: () => void; }) => JSX.Element; } declare const InputWithModal: FC; export default InputWithModal;