/************ Processor: ts ************/ // FILE: alert.d.tsx declare namespace ns_alert { /// type props = { show?: boolean; className?: string; mode?: string; message?: string; title?: string; isClose?: boolean; }; function BeyondAlert(props: props): JSX.Element; } export import BeyondAlert = ns_alert.BeyondAlert; export declare const hmr: {on: (event: string, listener: any) => void, off: (event: string, listener: any) => void };