import { default as React } from 'react'; export declare function useDialog(): { showDialog: (content: string | React.ReactNode, type?: "ok" | "yesno", title?: string | React.ReactNode, okLabel?: string, cancelLabel?: string, onOk?: () => void, onCancel?: () => void) => void; hideDialog: () => void; };