'use client'; import { createLazyComponent } from '../../../../common/lazy-wrapper'; import type { SmoothLineProps } from './types'; export const LazySmoothLine = createLazyComponent( () => import('./SmoothLine').then((mod) => ({ default: mod.SmoothLine })), { displayName: 'LazySmoothLine', fallback: ( ), }, ); export type { SmoothLineProps, SmoothLineColor, SmoothSeriesOptions, } from './types';