import type { unknownFunction } from '../../types'; import './style'; interface messageProps { data: { title?: string; icon?: 'success' | 'error' | 'warning' | 'loading' | 'none'; duration?: number; }; _origin?: (params: { title?: string; icon?: string; duration?: number; }) => void; event: Record; } export default function showMessage(props: messageProps): void; export {};