import HCloudError from "../interfaces/global/HCloudError"; export default function wrapError(error: T): T | HCloudError; /** * Checks if error is of type HCloudError. An HCloudError is comming from the SDK and holds * the information of a custom error that was initially thrown in a hcloud backend. */ export declare function isHCloudError(obj: unknown): obj is HCloudError;