import { CacheDriver } from './types/driver.cjs';
import { CacheDriverOptions } from './types/options/options.cjs';
import './types/helpers.cjs';
import 'typescript-log';
import '../events-BJQnbTp3.cjs';
import './types/bus.cjs';
import '@boringnode/bus/types/main';

declare function registerCacheDriverTestSuite(options: {
    createDriver: (options?: CacheDriverOptions) => CacheDriver<any>;
    /**
     * If the driver support milliseconds for TTLs
     */
    supportsMilliseconds?: boolean;
}): void;

export { registerCacheDriverTestSuite };
