import React from 'react'; export interface SizeControlProps { position: 'side-start' | 'side' | 'bottom'; panelRef?: React.RefObject; handleRef?: React.RefObject; onResize: (newSize: number) => void; }