/** Structured error thrown by managed Veilo API helpers. */ export declare class VeiloApiError extends Error { code: string; status: number; details?: unknown; constructor(code: string, message: string, status: number, details?: unknown); }