import React from 'react'; interface Size { width: number; height: number; } interface AutoSizeProps { style?: React.CSSProperties; className?: string; children?: (props: Size) => React.ReactNode; } /** * 需要外部配合tabContain样式生效 */ export declare const AutoSizer: React.MemoExoticComponent<(props: AutoSizeProps) => JSX.Element>; export default AutoSizer;