type Background = 'background-light-grey'; type FooterModifierConfig = { 'c-footer': [Background]; }; export type FooterModifier = { [P in keyof FooterModifierConfig]: { prefix: P; modifiers: FooterModifierConfig[P]; }; }[keyof FooterModifierConfig]; export type ModifierItems = FooterModifier[] | [Background]; export {};