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