import type { Options as OptionsOfCreateCache } from "@emotion/cache"; import type { EmotionCache } from "@emotion/cache"; import type { ReactNode } from "react"; export declare type NextAppDirEmotionCacheProviderProps = { /** This is the options passed to createCache() from 'import createCache from "@emotion/cache"' */ options: Omit; /** By default from 'import { CacheProvider } from "@emotion/react"' */ CacheProvider?: (props: { value: EmotionCache; children: ReactNode; }) => JSX.Element | null; children: ReactNode; }; export declare function NextAppDirEmotionCacheProvider(props: NextAppDirEmotionCacheProviderProps): JSX.Element;