export interface IGithubError { error: string; status: number; } export interface IGithubFile { name: string; path: string; type: 'file' | 'dir'; size: number; url: string; } export interface IGithubContent { content: string; } export declare class GithubHelper { private static getApiUrl; static getDirectoryContents(opts?: { path?: string; }): Promise; static getFileContent(opts: { filePath: string; }): Promise; } //# sourceMappingURL=github.helper.d.ts.map