/// import { FileDialogProps } from "./RNFileDialog"; /** * Pop up FileDialog inheriting the functionality of nodegui's `QFileDialog` * @example * ```javascript * function DialogExample(props){ * const [open, setOpen] = useState(false); * const events = useEventHandler({ * fileSelected(file){ * //....do whatever * } * }, [....deps]) * return ( * * *