import { DbApi } from "@dobuki/data-client";
import express from "express";
interface Props {
    owner: string;
    repo: string;
    githubApi: DbApi;
}
export declare function addGetDataRoute(app: express.Express, { githubApi, owner, repo }: Props): void;
export {};
