import { Cardinal } from '@musical-patterns/utilities'; import { RenderingName } from '../rendering'; import { BarTarget, BlockStyle } from '../types'; declare type UsageCount = Cardinal; declare type UsageCountByRendering = { [Index in RenderingName]?: UsageCount; }; declare type UsageCountByBlockStyle = { [Index in BlockStyle]?: UsageCountByRendering; }; declare type UsageGrouping = { [Index in BarTarget]: UsageCountByBlockStyle; }; export { UsageCount, UsageCountByRendering, UsageGrouping, };