import type { APIKeyAuthentication } from './APIKeyAuthentication'; import type { BasicAuthentication } from './BasicAuthentication'; import type { BearerTokenAuthentication } from './BearerTokenAuthentication'; import type { CommonURL } from './CommonURL'; export declare type OrganizationNotifier = { baseUrl: CommonURL; authentication: (BasicAuthentication | APIKeyAuthentication | BearerTokenAuthentication); };