/** * Custom error class for Baserow API errors */ export declare class BaserowApiError extends Error { /** * HTTP status code */ readonly status: number; /** * Error code from Baserow */ readonly code?: string; /** * Detailed error information */ readonly detail?: string; constructor(message: string, status: number, code?: string, detail?: string); }