import { Segment } from "vscode-json-languageservice"; export declare const API: "Api"; export declare const FUNCTION: "Function"; export declare const SIMPLE_TABLE: "SimpleTable"; export type GlobalKeyType = typeof API | typeof FUNCTION | typeof SIMPLE_TABLE; export declare const GlobalKeys: { Api: { resourceType: string; }; Function: { resourceType: string; }; SimpleTable: { resourceType: string; }; }; export interface GlobalConfigItem { resourceType: string; properties: Segment[]; } export interface GlobalsConfig { [API]: GlobalConfigItem; [FUNCTION]: GlobalConfigItem; [SIMPLE_TABLE]: GlobalConfigItem; } export declare const isEmpty: (globalsConfig: GlobalsConfig) => boolean;