/// import './dialog.less'; import { show } from './show.js'; import { alert } from './alert.js'; import { confirm } from './confirm.js'; import { clear } from './clear.js'; export type { DialogProps } from './dialog.js'; export type { Action } from './dialog-action-button.js'; export type { DialogShowProps, DialogShowHandler } from './show.js'; export type { DialogAlertProps } from './alert.js'; export type { DialogConfirmProps } from './confirm.js'; declare const _default: import("react").FC & { show: typeof show; alert: typeof alert; confirm: typeof confirm; clear: typeof clear; }; export default _default;