import { AgentErrorDefinition } from './exceptionHelper';
/**
 * Error definitions for the Activity system.
 * This contains localized error codes for the Activity subsystem of the AgentSDK.
 *
 * Each error definition includes an error code (starting from -110000), a description, and a help link
 * pointing to an AKA link to get help for the given error.
 *
 * Usage example:
 * ```
 * throw ExceptionHelper.generateException(
 *   Error,
 *   Errors.InvalidActivityTypeUndefined
 * );
 * ```
 */
export declare const Errors: {
    [key: string]: AgentErrorDefinition;
};
