import MessageBus from '../../utility/message-bus/messageBus'; import type { TectonPlatformControls } from '../../types/setup'; /** * Sets up the `clearCache` capability for invalidating cached data. * Clears cache entries by route prefix and broadcasts `cacheCleared` events. * * @param messageBus - The platform message bus for feature communication * @param platformControlBus - Platform control bus with handler implementations * @param capabilities - Set to populate with available capability names * @param teardowns - Array to collect cleanup functions for unsubscribing * * @internal */ export default function clearCacheSetup(messageBus: MessageBus, platformControlBus: TectonPlatformControls, capabilities: Set, teardowns: (() => void)[]): void; //# sourceMappingURL=clearCache-setup.d.ts.map