import { Optional } from '@ephox/katamari'; import type { SugarElement } from '../api/node/SugarElement'; export interface Polling { element: SugarElement; unbind: () => void; } declare const begin: (element: SugarElement, f: () => (() => void)) => void; declare const query: (element: SugarElement) => Optional; declare const end: (element: SugarElement) => void; export { begin, query, end }; //# sourceMappingURL=Monitors.d.ts.map