///
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 (
*
*
*
* )
* }
* ```
*/
export declare const FileDialog: string | import("react").ComponentType;