import React, { CSSProperties } from 'react'; interface IProps { top: (style: CSSProperties) => JSX.Element; bottom: (style: CSSProperties) => JSX.Element; } declare const ResizePanel: React.FC; export default ResizePanel;