import * as React from 'react'; import { EmotionCache } from '@emotion/react'; export interface EmotionCacheProviderProps { emotionCache?: EmotionCache | undefined; } export declare function AppCacheProvider({ emotionCache, children }: React.PropsWithChildren): import("react/jsx-runtime").JSX.Element;