import { HttpClient } from '../types'; interface CreateVRTOptions { roomName: string; userName: string; scopes?: string[]; } interface CreateVRTResponse { token: string; } export type CreateVRT = (options: CreateVRTOptions) => Promise; type CreateVRTFactory = (client: HttpClient) => CreateVRT; export declare const createVRTFactory: CreateVRTFactory; export {}; //# sourceMappingURL=createVRTFactory.d.ts.map