import { NowConfig, Logger, FileSystem } from '@servicenow/sdk-project'; import { Dictionary } from 'lodash'; import { SessionOrToken } from '../../../auth'; export declare function generateScriptTypeDeclarations(workingDir: string, typesDir: string, config: NowConfig, session: SessionOrToken, fs: FileSystem, logger: Logger): Promise; export declare function getScriptIncludeDeclarationContent(siGroups: Dictionary, scope: string): string; export declare function extractScriptIncludeExpressionIdentifiers(workingDir: string, fs: FileSystem, config: NowConfig, logger: Logger): Promise>; type ScriptIncludeResult = { id: string; script: string; name: string | undefined; }; export {};