import { ConfigService } from '@nestjs/config';
export interface IceServer {
    urls: string | string[];
    username?: string;
    credential?: string;
}
export declare class TurnService {
    private readonly config;
    private readonly log;
    constructor(config: ConfigService);
    issue(userId: string | number, ttlSeconds?: number): IceServer[];
}
