export declare const parseAppName: (appId: string) => string; export declare const parsePathname: (pathname?: string) => { clientIntId: string | null; pageId: string | null; }; export declare const QUERY_STRING_KEY = "variant_id"; export declare const getVariantId: (queryString: string) => string | null | undefined; export declare const getNameAndPostFixNumber: (id: string) => { parsedNumber: string; parsedName: string; };