import type { Effect } from '../../../libs/cargo-hold'; import type { HasInstanceId, HasLens } from '../../../libs/util-domain-state'; import type { HasProductId, ProductDomainState } from './product.types'; /** * Creates and returns the RxJS effects for the ProductData (third level) of the Product state. * * @param options */ export declare const createProductDataEffect: (options: HasInstanceId & HasLens & HasProductId) => Effect;