import type { CssLength } from '@breadstone/mosaik-themes'; import type { IDimensionableProps } from '../../../Behaviors/Dimensionable'; import type { IFitableProps } from '../../../Behaviors/Fitable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; /** * Represents the `IChartElementProps` interface. * * @public */ export interface IChartBaseElementProps extends IVariantableProps, IFitableProps, IDimensionableProps { width: CssLength; height: CssLength; header: string; subHeader: string; } //# sourceMappingURL=IChartBaseElementProps.d.ts.map