import { LoadResult, LoadSourceOptions } from './loader'; import { JsonLensPatcher } from '../patching'; import { SamTemplateSchema } from '../types'; interface LoadSamSchemaSourceOptions extends LoadSourceOptions { readonly patcher?: JsonLensPatcher; } /** * Load the new SAM (json) schema */ export declare function loadSamSchema(filePath: string, options?: LoadSamSchemaSourceOptions): Promise>; export {};