import React from 'react';
import { EmotionCache } from '@emotion/cache';
export declare const CacheContext: any;
declare const CacheProvider: React.FC<CacheProviderProps>;
export default CacheProvider;
declare type CacheProviderProps = {
    value: EmotionCache;
    children: React.ReactNode;
};
