export type ManagedBasePathConfig = {
    domain: string;
    rewriteSuffix: string;
};
export declare const MANAGED_BASE_PATHS: Map<string, ManagedBasePathConfig>;
export declare function isManagedBasePath(basePath: string): boolean;
export declare function isCustomBasePath(basePath: string): boolean;
