export declare function downloadBinary(url: string): Promise<Uint8Array>;
export type GhFile = {
url: string;
path: string;
name: string;
isDir: boolean;
buffer?: Uint8Array;
};
export declare function download(user: string, repo: string): Promise<GhFile[]>;