declare function getPath(...pathSegment: string[]): string;
declare function loadFile<T>(path: string): Promise<T | undefined>;
export { getPath, loadFile };
