import type { ValuesOf } from '../../Types/ValuesOf'; /** * `ChartStackType` - The `ChartStackType` object is used to describe the different types of chart stacks. */ export declare const ChartStackType: { /** * The normal stack type. */ readonly Normal: "normal"; /** * The 100% stack type. */ readonly Fill: "100%"; }; /** * @public */ export type ChartStackType = ValuesOf; //# sourceMappingURL=ChartStackType.d.ts.map