export declare function showNotification(message: string): void;
export declare function showDialogBox(
  message: string,
  onConfirm: () => void,
  onCancel: () => void
): void;
export declare function syntaxHighlightHTML(html: string): string;
export declare function syntaxHighlightCSS(css: string): string;
export declare function debounce(
  func: Function,
  delay: number
): (...args: any[]) => void;
