import { ComputedRef } from 'vue'; import { BulletLegendItemInterface } from '../../types'; export interface StackedGroupedConfig { data: T[]; categories: Record; stackAndGrouped: boolean; xAxis?: keyof T; spacing?: number; } export interface StackedGroupedResult { states: string[]; groupedByState: Record; colors: Record; bars: Record any)[]>; colorFunctions: Record string>; positions: Record; chartData: T[] | any[]; } export declare function useStackedGrouped(config: StackedGroupedConfig): ComputedRef>;