import { type FC } from 'react'; import { type ArrayDataValue, type StringDataValue, type NodeId } from '@ironclad/rivet-core'; type UserInputModalProps = { open: boolean; questions: string[]; questionsNodeId: NodeId | undefined; onSubmit: (answers: ArrayDataValue) => void; onClose?: () => void; }; export declare const UserInputModal: FC; export {}; //# sourceMappingURL=UserInputModal.d.ts.map