///
import { InputDialogProps } from "./RNInputDialog";
/**
* Pop up InputDialog inheriting the functionality of nodegui's `QInputDialog`
* @example
* ```javascript
* function DialogExample(props){
* const [open, setOpen] = useState(false);
* const events = useEventHandler({
* textValueChanged(value){
* //....do whatever
* }
* }, [....deps])
* return (
*
*
*
* )
* }
* ```
*/
export declare const InputDialog: string | import("react").ComponentType;