/** * Type declarations for internal Anthropic packages that cannot be installed * from public npm. All exports are typed as `any` to suppress errors while * still allowing IDE navigation for the actual source code. */ // ============================================================================ // bun:bundle — compile-time macros // ============================================================================ declare module "bun:bundle" { export function feature(name: string): boolean; export function MACRO(fn: () => T): T; } declare module "bun:ffi" { export function dlopen>(path: string, symbols: T): { symbols: { [K in keyof T]: (...args: unknown[]) => unknown }; close(): void }; } //