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;
