import type { AgChartStyle, AgChartTheme } from './shared/agChartShared'; import type { AgWidgetDataFormat } from './shared/agWidget'; /** * Theme configuration for radial chart. */ export interface AgRadialChartTheme extends AgChartTheme { } /** * Style configuration for radial chart. */ export type AgRadialChartStyle = AgChartStyle; /** * Format configuration for radial chart. */ export type AgRadialChartFormat = AgWidgetDataFormat;