export type AuthorizeRequestOptions = { issuer: string; accessTokenMaxAge?: number; authorizationCodeMaxAge?: number; idTokenMaxAge?: number; }; export type AuthorizeRequestResult = { authorizationCode?: string; accessToken?: string; idToken?: string; redirectUri: string; state?: string; }; //# sourceMappingURL=type.d.ts.map