import { GithubUserPayload } from "../../../types"; type Param = { code: string; clientId: string; clientSecret: string; }; /** * # Login/signup a github user */ export default function githubLogin({ code, clientId, clientSecret, }: Param): Promise; export {};