import type { LogLevel } from '../types/common'; export declare const SIGNALING_API_VERSION = 8; export declare const LOG_LEVEL_ERROR: LogLevel; export declare const LOG_LEVEL_WARN: LogLevel; export declare const LOG_LEVEL_INFO: LogLevel; export declare const LOG_LEVEL_DEBUG: LogLevel; export declare const LogLevels: Record; export declare const ASDK_VERSION = "2.5.1"; export declare const CONSUMER_CHECK_STATE_TIMEOUT = 4500; export declare const PEER_APP_DATA_MAX_SIZE_BYTES = 2048; export declare const MAX_JOIN_ATTEMPTS = 4; export declare const DEBOUNCE_LIMIT = 3; export declare const MEDIASOUP_SSRC_PROBATOR = 1234; export declare const HALF_SECOND_IN_MS = 500; export declare const SECOND_IN_MS = 1000; export declare const TWO_SECONDS_IN_MS: number; export declare const FIVE_SECONDS_IN_MS: number; export declare const TEN_SECONDS_IN_MS: number; export declare const FIFTEEN_SECONDS_IN_MS: number; export declare const MINUTE_IN_MS: number; export declare enum HttpStatusCode { Continue = 100, SwitchingProtocols = 101, Processing = 102, OK = 200, Created = 201, Accepted = 202, NonAuthoritativeInformation = 203, NoContent = 204, ResetContent = 205, PartialContent = 206, MultipleChoices = 300, MovedPermanently = 301, Found = 302, SeeOther = 303, NotModified = 304, TemporaryRedirect = 307, PermanentRedirect = 308, BadRequest = 400, Unauthorized = 401, PaymentRequired = 402, Forbidden = 403, NotFound = 404, MethodNotAllowed = 405, NotAcceptable = 406, RequestTimeout = 408, Conflict = 409, Gone = 410, UnsupportedMediaType = 415, TooManyRequests = 429, InternalServerError = 500, NotImplemented = 501, BadGateway = 502, ServiceUnavailable = 503, GatewayTimeout = 504 } export declare const CHANNEL_MESSAGES_DATA_PRODUCER = "channel-messages-data-producer";