import { ChartType } from '../../types.js'; interface FlowDepthControlsProps { chartType: ChartType; stepsBefore: number; stepsAfter: number; onStepsBeforeChange: (count: number) => void; onStepsAfterChange: (count: number) => void; } declare const FlowDepthControls: import('react').NamedExoticComponent; export default FlowDepthControls;