import { Auth, CreateSessionV2Options, CreateSessionV2Response } from '../../types';

export declare function createStreamApiV2(auth: Auth, host: string, agentId: string, onError?: (error: Error, errorData: object) => void): {
    createStream(options: CreateSessionV2Options): Promise<CreateSessionV2Response>;
};
