8 lines
312 B
TypeScript
8 lines
312 B
TypeScript
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;
|