import type { TectonMessageBus } from 'q2-tecton-common/lib/types/message-bus'; import type { TectonPlatformControls } from '../../types/setup'; /** * Sets up the `authToken` capability for retrieving authentication tokens. * Provides features with access to the platform's authentication token. * * @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 getAuthTokenSetup(messageBus: TectonMessageBus, platformControlBus: TectonPlatformControls, capabilities: Set, teardowns: (() => void)[]): void; //# sourceMappingURL=getAuthToken-setup.d.ts.map