/**
 * Action dispatched when fetching products is required for the container
 * @param {String} url Fetch URL
 * @returns {Object}
 */
export function fetchProducts(url: string): Object;
/**
 * Action dispatched when clicking on a product in the header bar
 * @param {Object} product Opened product
 * @returns {Object}
 */
export function openProduct(product: Object): Object;
