export declare function primitiveAutoImportEntries(): void; /** * Runtime values Stacks makes available as server-side globals. * * This list is shared by runtime injection and the auto-import declaration * generator so globals such as `db` have the same behavior in Bun and in the * TypeScript language service. */ export declare const primitiveModules: readonly PrimitiveModule[]; export type PrimitiveModule = readonly [module: string, names: readonly string[]];