/**
 * TadoError extends the base Error class to represent errors specific to the Tado ecosystem.
 * This custom error class can be used to differentiate between general errors
 * and those that are Tado-specific, enabling more precise error handling and debugging.
 */
export declare class TadoError extends Error {
}
/**
 * Authentication Errors will use this class
 */
export declare class AuthError extends TadoError {
}
export declare class InvalidRefreshToken extends AuthError {
}
export declare class NotAuthenticated extends AuthError {
}
export declare class AuthTimeout extends AuthError {
}
