import { Product } from '@spartacus/core'; import { Observable } from 'rxjs'; import { CurrentProductService } from '../../../../../cms-components/product/current-product.service'; import { JsonLdBuilder, SchemaBuilder } from '../schema.interface'; import * as i0 from "@angular/core"; /** * Adds the minimal structured data for the product, see https://schema.org/product. * The actual data collection is delegated to `JsonLdBuilder`s, which can be injected * using the `JSONLD_PRODUCT_BUILDER` token. */ export declare class ProductSchemaBuilder implements SchemaBuilder { private currentProduct; protected builders: JsonLdBuilder[]; constructor(currentProduct: CurrentProductService, builders: JsonLdBuilder[]); build(): Observable; protected collect(product: Product): Observable[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }