import type { ProductsServerInitialState } from './types/index.js'; /** * Converts server data for details of a product to store state. * * @param data - Params injected by the server. * * @returns Initial state for the product details reducer. */ declare const serverInitialState: ProductsServerInitialState; export default serverInitialState;