export interface BoclipsApiError { error: string; message: string; reasons?: string[]; path: string; status: number; timestamp: Date; } export declare const isBoclipsApiError: (error: any) => error is BoclipsApiError;