export type Options = { id: IdType; privateKey: string; now?: number; }; export type Result = { appId: IdType extends string ? string : number; expiration: number; token: string; }; export default function githubAppJwt(options: Options): Promise>;