import * as React from 'react';
export interface CacheContentProps {
    children?: React.ReactNode;
    open?: boolean;
}
declare const CacheContent: React.MemoExoticComponent<({ children }: CacheContentProps) => React.ReactElement<any, string | React.JSXElementConstructor<any>>>;
export default CacheContent;
