export interface IRequestParams { app_id: string; ext_user_id: string; sdk: string; skdVersion: string; } export declare const getRequestParams: (appId: string, userId: string) => IRequestParams; export declare const checkIfStringIsHexColor: (string: string) => boolean; export declare const throwErrorIfColorStringsAreNoHexColor: (strings: (string | undefined)[]) => void; export declare const buildQueryString: (params: Record) => string; export declare const deepPropsComparison: (prevProps: Record, nextProps: Record) => boolean;