import { ReactNode } from 'react'; import { SEOConfig } from '../../types'; interface SEOContextType { seoConfig: SEOConfig; updateSEO: (config: SEOConfig) => void; } interface SEOProviderProps { children: ReactNode; initialSEO?: SEOConfig; } export declare function SEOProvider({ children, initialSEO }: SEOProviderProps): import("react/jsx-runtime").JSX.Element; export declare function useSEOContext(): SEOContextType; export {};