import type { HasInstance, HasInstanceId } from '../../../libs/util-domain-state'; import type { ProductDataSource } from '../interfaces/product-data-source.interface'; import type { HasProductId, ProductDataState } from './product.types'; /** * the third nested level initial state * * @param options */ export declare const createProductDataInitialState: (options: HasInstance & HasInstanceId & HasProductId) => ProductDataState;