import { Secret } from "../../types.js"; export declare const isCustomClient: (clientId?: string) => boolean; export declare const getTenantUrl: () => string; export declare function validateUrl(url: string): Promise; export type UrlValidationFlags = { authUrlWasAutoGenerated: boolean; tokenUrlWasAutoGenerated: boolean; }; export declare function validateAutoGeneratedUrls(authorizationUrl: string, tokenUrl: string, flags: UrlValidationFlags): Promise; export declare function updateUrls(secret: Secret): Promise; export declare function isSecretConsistent(secret: Secret): { consistent: true; } | { consistent: false; errors: Array; };