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