export declare const getAdjustedTitle: (title: string, length?: number) => string; export declare const decodeHtmlEntities: (text: string) => string; export declare function getColorWithAlpha(colorHex: string, alpha: number): string; export declare function hexToRGBWithOpacity(hex: any, opacity: any): string; export declare const getIdFromGid: (gid: string) => string | undefined; export declare function getCookieValue(cookieName: string): string; export declare const extractShopifyProductOrVariantId: (id: string) => string; export declare function setContrastTextColor(element: HTMLElement | null, lightColor?: string, darkColor?: string, threshold?: number): void; export declare const formatPriceWithCommas: (price: number | string) => string; export declare const shouldRenderCheckoutMessageInCartList: () => boolean; export declare const shouldUseBWTheme: () => boolean; export declare const optimizeShopifyImage: (imageUrl: string | undefined | null, size?: number, quality?: number, format?: "webp" | "auto" | "jpg" | "png") => string; export declare const darkenColor: (color: string | undefined, amount?: number) => string; export declare const extractBundleDiscountTitle: (discountTitle: string) => string; export declare const sanitizeHtml: (html: string | null | undefined) => string; export * from "./shopifyAtcBridge";