import { UrlHelperConfig } from './UrlHelperTypes'; /** A class responsible for generating URLs that FusionAuth SDKs interact with. */ export declare class UrlHelper { serverUrl: string; clientId: string; redirectUri: string; scope?: string; mePath: string; loginPath: string; registerPath: string; logoutPath: string; tokenRefreshPath: string; postLogoutRedirectUri?: string; constructor(config: UrlHelperConfig); getMeUrl(): URL; getLoginUrl(state?: string): URL; getRegisterUrl(state?: string): URL; getLogoutUrl(): URL; getTokenRefreshUrl(): URL; getAccountManagementUrl(): URL; private generateUrl; private generateURLSearchParams; }