UNPKG

tanuki-ui

Version:

HTML-first React component library with semantic elements, multi-OS themes, and production-ready visual node editor

8 lines (7 loc) 310 B
import * as React from "react"; export declare const useNativeAlertLikeInterface: () => { confirm: (message?: string) => Promise<any>; alert: (message?: any) => Promise<undefined>; prompt: (message?: string, defaultValue?: string) => Promise<string | null>; Outlet: () => React.JSX.Element; };