import { LegendConfig } from './LegendConfig'

/**
 * Configuration for stripe composition map legends.
 * Used to display a legend with colored rectangles representing different categories
 * in stripe composition maps (regions divided into colored stripes showing composition).
 */
export interface StripeCompositionLegendConfig extends LegendConfig {
    // Inherits all properties from LegendConfig
    // No additional specific properties beyond the base legend configuration
}
