import type { Error as OfficialClientError } from "airtable"; export declare class AirtableError extends Error { error: string; statusCode: number; constructor(error: string, message: string, statusCode: number); static fromOfficialClientError({ error, message, statusCode, }: OfficialClientError): AirtableError; }