export type ProviderProbeAuth = { probeAuthorizationFor(baseUrl: string): Promise; recordRegistrySessionToken(token: string): void; }; export declare function createProviderProbeAuth(deps: { authRegistryUrl: () => string | undefined; }): ProviderProbeAuth;