import React from "react"; 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 & { prepend?: boolean; }; /** By default from 'import { CacheProvider } from "@emotion/react"' */ CacheProvider?: React.Provider; children: ReactNode; }; export declare function NextAppDirEmotionCacheProvider(props: NextAppDirEmotionCacheProviderProps): import("react").ReactElement; export default NextAppDirEmotionCacheProvider;