/**
* Represents an error that is handled by the application and typically communicated to the user,
* rather than being an unexpected program bug. These errors are not sent to telemetry.
*/
export declareclassHandledErrorextendsError{
constructor(message: string);
}