/** * this function helps to build target name * @ignore * @param target -- container target name * @param baseContext -- base context * @returns -- new target name */ export declare const getResolvedTargetName: (target: string, baseContext?: string | null) => string | null; /** * this function helps to get Routing Info for the passed in Target and Context Name * @ignore * @param target -- container target name * @param context -- base context * @returns -- routing info state object */ export declare const getRoutingInfo: (target: string, context: string) => any; /** * Retrieve semantic URL by view name and view class for showView container action * @ignore * @param viewName - view name * @param queryParameters - query params * @returns semantic url or empty string * @public */ export declare const getSemanticURLFromRoutingInfo: (viewName: string, queryParameters: any) => string;