/** * Discovers the user's indieauth-metadata endpoint by fetching the * [user's profile URL](https://indieauth.spec.indieweb.org/#user-profile-url). * * The indieauth-metadata endpoint provides the location of the IndieAuth * server's authorization endpoint and token endpoint, as well as other relevant * information for the client. * * @example https://giacomodebidda.com/.well-known/oauth-authorization-server * @example https://aaronparecki.com/.well-known/openid-configuration * * @see [Discovery by Clients - IndieAuth spec](https://indieauth.spec.indieweb.org/#discovery-by-clients) */ export declare const metadataEndpoint: (me: string) => Promise<{ error: Error; value?: undefined; } | { value: string; error?: undefined; }>; //# sourceMappingURL=metadata-endpoint.d.ts.map