interface ProcessedStyle {
    name: string;
    hclProperties: string[];
    features: Set<string>;
    margins: {
        MarginL?: number;
        MarginR?: number;
        MarginV?: number;
    };
}

export type { ProcessedStyle };
