export interface OAuthServerMetadata { authorizationEndpoint: string; tokenEndpoint: string; registrationEndpoint?: string; resource: string; } export declare function discoverOAuthServerMetadata(resource: string): Promise; export declare function resetDiscoveryCache(): void;