/** * 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 declare class HandledError extends Error { constructor(message: string); }