import { SimConfig } from '@dooboostore/simple-boot'; import { ApiService } from '@dooboostore/simple-boot'; import { ConstructorType } from '@dooboostore/core'; import { HttpFetcherTarget } from '@dooboostore/core'; export type TopicProtocolConfig
= { bypassTransform?: boolean; transformText?: boolean; headers?: HeadersInit; body?: TBody; endpoint?: HttpFetcherTarget; type?: TopicProtocolType; config?: ApiService.ApiServiceConfig; }; type TopicProtocolType = 'intent' | 'router'; export declare const createTopicHandler: