UNPKG

theme-editor-svelte

Version:
9 lines (8 loc) 282 B
import type { ThemeVariable } from '../../types.js'; interface Props { groupName: string; variables: ThemeVariable[]; } declare const ThemeGroup: import("svelte").Component<Props, {}, "variables">; type ThemeGroup = ReturnType<typeof ThemeGroup>; export default ThemeGroup;