export type KeycloakIssuerUriParsed = { origin: string; realm: string; /** If defined starts with / and end with no `/` */ kcHttpRelativePath: string | undefined; }; export declare function parseKeycloakIssuerUri(params: { issuerUri: string; }): KeycloakIssuerUriParsed;