import type { ExtendedAddon, ExtendedAddonAttachment } from '../types/pg/platform-api.js'; /** * This error is used internally to signal when the `AddonAttachmentResolver` cannot resolve * to a single attachment. */ export declare class AmbiguousError extends Error { readonly matches: ExtendedAddon[] | ExtendedAddonAttachment[]; readonly type: string; readonly body: { id: string; message: string; }; readonly message: string; readonly statusCode = 422; constructor(matches: ExtendedAddon[] | ExtendedAddonAttachment[], type: string); }