import { LogLevel } from '../utils/Logger'; export * from '../websocket-message/scene'; export * from '../models/Conversation'; /** * Represents the different combinations of User Media that are supported * @public */ export declare enum UserMedia { None = 0, Microphone = 1, MicrophoneAndCamera = 2, Camera = 3 } /** * @public */ export declare enum NLPIntent { PAGE_METADATA = "PAGE_METADATA" } /** * @public */ export interface RetryOptions { maxRetries?: number; delayMs?: number; } /** * @public */ export type LoggingConfig = Record<'session' | 'contentAwareness', { minLogLevel?: LogLevel; enabled?: boolean; }>; /** * @public */ export type MediaDeviceOptions = { microphone?: boolean; camera?: boolean; }; //# sourceMappingURL=scene.d.ts.map