import { Environment } from './http/environment.js'; import { SdkConfig } from './http/types.js'; import { ChannelsService } from './services/channels/index.js'; import { IntegrationsService } from './services/integrations/index.js'; import { NotificationsService } from './services/notifications/index.js'; export { Environment } from './http/environment.js'; export * from './http/index.js'; export * from './services/channels/index.js'; export * from './services/common/index.js'; export * from './services/integrations/index.js'; export * from './services/notifications/index.js'; export declare class Client { config: SdkConfig; readonly channels: ChannelsService; readonly integrations: IntegrationsService; readonly notifications: NotificationsService; constructor(config: SdkConfig); set baseUrl(baseUrl: string); set environment(environment: Environment); set timeoutMs(timeoutMs: number); set token(token: string); } //# sourceMappingURL=index.d.ts.map