///
import { FontDialogProps } from "./RNFontDialog";
/**
* Pop up FontDialog inheriting the functionality of nodegui's `QFontDialog`
* @example
* ```javascript
* function FontDialogExample(props){
* const [open, setOpen] = useState(false);
* const events = useEventHandler({
* fontSelected(font){
* //....do whatever
* }
* }, [....deps])
* return (
*
*
*
* )
* }
* ```
*/
export declare const FontDialog: string | import("react").ComponentType;