/** * Core product addons columns shared between db-main and db-marketplace. * * Use spread operator to include in table definitions: * @example * const productAddonsTable = pgTable("product_addons", { * id: typeId("product_addons"), * productId: typeIdRef("product_id").notNull().references(...), * ...productAddonsCoreColumns(), * }) */ export declare function productAddonsCoreColumns(): { name: import("drizzle-orm").NotNull>; pricing: import("drizzle-orm").NotNull>; required: import("drizzle-orm").HasDefault>; selectable: import("drizzle-orm").HasDefault>; }; //# sourceMappingURL=product-addons.d.ts.map