import type { RequestGitHubJwtRedirectParams } from './providers/github/types/request'; import type { RequestGoogleJwtCredentialsParams, RequestGoogleJwtRedirectParams } from './providers/google/types/request'; import type { RequestJwtCredentialsResult } from './types/request'; export declare function requestJwt(args: { google: RequestGoogleJwtCredentialsParams; }): Promise; export declare function requestJwt(args: { google: RequestGoogleJwtRedirectParams; } | { github: RequestGitHubJwtRedirectParams; }): Promise;