///
import { DialogProps } from "./RNDialog";
/**
* Pop up Dialog inheriting the functionality of nodegui's `QDialog`
* @param minSize set minimum height, width to prevent errors
* @example
* ```javascript
* function DialogExample(props){
* const [open, setOpen] = useState(false);
* return (
*
*
*
* )
* }
* ```
*/
export declare const Dialog: string | import("react").ComponentType>;