import type { ProductEntity } from '../../entities/types/index.js'; import type { RelatedSet } from '@farfetch/blackout-client'; import type { StoreState } from '../../types/index.js'; /** * Gets the related sets of a specific type from a given product. * * @param state - Application state. * @param productId - Product id to get the related sets from. * @param setType - Desired set type to filter. * * @returns Related sets of the given type. */ export declare const getProductRelatedSetsIdsByType: (state: StoreState, productId: ProductEntity['id'], setType: RelatedSet['setType']) => RelatedSet['setId'][];