/** * One certification record attached to a product. */ export type ProductCertificationRow = { cert_type: string; cert_number: string; cert_url: string; cert_issued?: (string | null); cert_expires?: (string | null); fetched_at: string; }; //# sourceMappingURL=ProductCertificationRow.d.ts.map