import { type Config, type GetSEOMetadata, type GetSEOMetadataQuery, type SEOMetadata } from '@farfetch/blackout-client'; import type { Dispatch } from 'redux'; import type { FetchSEOMetadataAction } from '../../types/index.js'; /** * Fetch SEO metadata content with a specific query object. * * @param getSEOMetadata - Get SEO metadata client. * * @returns Thunk factory. */ declare const fetchSEOMetadataFactory: (getSEOMetadata: GetSEOMetadata) => (query?: GetSEOMetadataQuery, config?: Config) => (dispatch: Dispatch) => Promise; export default fetchSEOMetadataFactory;