/** @format */ import React from "react"; interface InteractiveInputInterface { label?: string; dbName?: string; isOkFunction: any; errorMessage: string; loopInterval?: number; startContent?: any; endContent?: any; [key: string]: any; } declare function InteractiveInput(props: InteractiveInputInterface): React.JSX.Element; export default InteractiveInput;