import { Modal } from '../modules/modal'; declare global { interface JQueryStatic { /** * Provides a global modal interface that handles creation of the necessary * DOM elements, styling, etc */ modal(): typeof Modal; } } export {};