export interface FileInfo {
content?: string | null;
path: string;
size: number;
}
export declare function getGameFiles(gameDir: string): Promise<FileInfo[]>;
export declare function findShortestPathFileThatEndsWith(files: FileInfo[], fileName: string): FileInfo | undefined;