import { ManagementClient } from 'auth0'; import { Assets, Config, Auth0APIClient, KeywordMappings } from '../../types'; export default class YAMLContext { basePath: string; configFile: string; config: Config; mappings: KeywordMappings; mgmtClient: Auth0APIClient; assets: Assets; disableKeywordReplacement: boolean; constructor(config: Config, mgmtClient: ManagementClient); loadFile(f: any): string; loadAssetsFromLocal(opts?: { disableKeywordReplacement: boolean; }): Promise; dump(): Promise; }