import { IRepoResponse, ITemplateFetcher } from '@rocketmakers/orbit-template-core'; export declare class FileSystemFetcher implements ITemplateFetcher { private rootPath; constructor(rootPath: string); getServiceJson(serviceFileName: string): Promise; getEtag(relativePath: string): Promise; getContent(relativePath: string): Promise<{ content: string; etag: string; }>; getPayloadSchemaContent(relativePath: string): Promise>; } //# sourceMappingURL=fileSystemFetcher.d.ts.map