/** * Source Error * * Extended SourceError with simplified constructor for plugin sources. * Extracted to break import cycle between base.ts and request-builder.ts. * * @since v2.9.1 */ import { SourceError as BaseSourceError } from '../errors/index.js'; /** * Source error with additional context */ export declare class SourceError extends BaseSourceError { readonly source: string; readonly statusCode?: number | undefined; readonly name: string; constructor(message: string, source: string, statusCode?: number | undefined, retryable?: boolean); } //# sourceMappingURL=source-error.d.ts.map