export interface PixivApiError { error: { user_message: string; message: string; reason: string; user_message_details: Record; }; } export declare class PixivError extends Error { status?: number; response?: any; header?: any; body?: string; constructor(message: string, options?: { status?: number; response?: any; header?: any; body?: string; }); }