UNPKG

@helpwave/hightide

Version:

helpwave's component and theming library

20 lines (17 loc) 636 B
import * as react_jsx_runtime from 'react/jsx-runtime'; import { InputProps } from '../user-input/Input.mjs'; import { ConfirmDialogProps } from './ConfirmDialog.mjs'; import 'react'; import '../user-input/Label.mjs'; import '../Button.mjs'; import '../../hooks/useTranslation.mjs'; import '../../hooks/useLanguage.mjs'; import './Modal.mjs'; type InputModalProps = ConfirmDialogProps & { inputs: InputProps[]; }; /** * A modal for receiving multiple inputs */ declare const InputModal: ({ inputs, buttonOverwrites, ...restProps }: InputModalProps) => react_jsx_runtime.JSX.Element; export { InputModal, type InputModalProps };