import type { NmrData1D } from 'cheminfo-types'; interface BaseProps { reverse?: boolean; horizontalMargin?: number; } interface VerticalSliceChartProps extends BaseProps { data: NmrData1D; } declare function VerticalSliceChart(props: VerticalSliceChartProps): import("react/jsx-runtime").JSX.Element; export default VerticalSliceChart; //# sourceMappingURL=VerticalSliceChart.d.ts.map