import { AgentErrorDefinition } from '@microsoft/agents-activity'; /** * Error definitions for the Dialogs system. * This contains localized error codes for the Dialogs subsystem of the AgentSDK. * * Each error definition includes an error code (starting from -130000), 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.MissingDialog * ); * ``` */ export declare const Errors: { [key: string]: AgentErrorDefinition; };