export declare const BROKER_CONNECTION_TYPE = "gatekeeper"; export declare const CLIENT_CONNECTION_TYPE = "client"; export declare const GATEKEEPER_CONNECTION_TYPE = "gatekeeper"; export declare const CONNECTION_TYPE_SEPARATOR = "::"; export declare const CONNECTION_API_KEY_SEPARATOR = "##"; export declare const CONNECTION_NAME_HEADER_NAME = "x-api-key"; export declare const DEFAULT_CONNECTION_NAME = "default"; export declare const CLIENT_CONNECTION_NAME_PREFIX: string; export declare const GATEKEEPER_CONNECTION_NAME_PREFIX: string; export declare const MESSAGE_TYPES: { CLIENT_PING: string; CLIENT_PONG: string; CLIENT_REQUEST: string; CLIENT_RESPONSE: string; CLIENT_DISCONNECT: string; CLIENT_ERROR: string; CLIENT_CONNECTION_OVERRIDE: string; BROKER_ERROR: string; }; export declare const INVOKER_NAMES: { AUTO: string; SERVERLESS_LOCAL: string; SAM_LOCAL: string; }; export declare const AWS_LAMBDA_HEADERS: { CLIENT_CONTEXT: string; INVOCATION_TYPE: string; LOG_TYPE: string; }; export declare const AWS_LAMBDA_ENV_VARS: { AWS_SESSION_TOKEN: string; AWS_SECRET_ACCESS_KEY: string; AWS_ACCESS_KEY_ID: string; AMAZON_TRACE_ID: string; }; export declare const ERROR_TYPES: { RUNTIME_NOT_ACTIVE: string; RUNTIME_IN_USE: string; FUNCTION_IN_USE: string; }; export declare const FUNCTION_LOG_COLORS: string[];