type ColorFunc = (str: string | number) => string; type FrameworkVariant = { name: string; display: string; color: ColorFunc; customCommand?: string; }; export type Framework = { name: string; display: string; color: ColorFunc; variants: readonly FrameworkVariant[]; }; export declare const frameworks: readonly Framework[]; export {}; //# sourceMappingURL=frameworks.d.ts.map