import { PropsWithChildren } from 'react'; interface ContextType { locale: string; } export declare const useContentLocale: () => string; export declare const ContentLocaleProvider: ({ locale, children }: PropsWithChildren & ContextType) => import("react/jsx-runtime").JSX.Element; export {};