import type { ThemeVariable } from '../../types.js'; interface Props { groupName: string; variables: ThemeVariable[]; } declare const ThemeGroup: import("svelte").Component; type ThemeGroup = ReturnType; export default ThemeGroup;