export interface StackedBarProps { /** * Array of values to be displayed. */ values: number[]; /** * A D3 color scale used to determine bar color. */ color?: string | ((val: any) => string); /** * Width of cell (in pixels). */ width?: number; [key: string]: any; } //# sourceMappingURL=StackedBarProps.d.ts.map