///
import { ProgressDialogProps } from "./RNProgressDialog";
/**
* Pop up ProgressDialog inheriting the functionality of nodegui's `QProgressDialog`
* @example
* ```javascript
* function ProgressDialogExample(props){
* const [open, setOpen] = useState(false);
* const events = useEventHandler({
* canceled(){
* setOpen(false);
* //....do whatever
* }
* }, [....deps])
* const [value, setValue] = useState(0);
* return (
*
*
*
* )
* }
* ```
*/
export declare const ProgressDialog: string | import("react").ComponentType;