import { ApiSession } from '../session/api-session'; export declare type HTTPMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'HEAD' | 'TRACE' | 'OPTIONS' | 'CONNECT'; export declare const createStreamingTopic: (apiSession: ApiSession, collection: string, method: HTTPMethod) => string;