import type { Callback } from './types.js'; declare const isFunction: (value: unknown) => value is Function; declare const makeCounterPromise: () => { promise: Promise; increment: Callback; decrement: Callback; }; export { isFunction, makeCounterPromise };