/// import { VariableGroup } from '@/api'; export declare const typeNameMap: { APP: any; TEMPLATE: any; GLOBAL: any; }; declare function RelateGlobalVariableGroup({ appName, templateVariableGroups, defaultGroups, disabled, onChange, }: { appName?: string; disabled?: boolean; templateVariableGroups?: VariableGroup[]; defaultGroups: VariableGroup[]; onChange: (groups: VariableGroup[]) => void; }): JSX.Element; export default RelateGlobalVariableGroup;