import { XmatLegendItemContentComponent } from "./xmat-legend-item-content.component";
export interface XmatLegendItem {
    image?: string;
    color?: string;
    className?: string | string[];
    content: string | XmatLegendItemContentComponent;
}
export declare type XmatLegendLayout = "grid" | "list";
export declare class XmatLegendLayouts {
    static GRID: XmatLegendLayout;
    static LIST: XmatLegendLayout;
}
export interface XmatLegendItemStyle {
    flex: string;
}
