import type { OpenIdConfiguration } from '../config/openid-configuration';
export declare class ClosestMatchingRouteService {
    getConfigIdForClosestMatchingRoute(route: string, configurations: OpenIdConfiguration[]): ClosestMatchingRouteResult;
}
export interface ClosestMatchingRouteResult {
    matchingRoute: string | null;
    matchingConfig: OpenIdConfiguration | null;
}
//# sourceMappingURL=closest-matching-route.service.d.ts.map