export declare type CodeBlockCallback = () => void | Promise; export declare type PropertiesLoadedCallback = (loaded: boolean) => void | Promise; export declare type TaplyticsExperiments = { [key: string]: string; }; export declare type TaplyticsFeatureFlags = { [key: string]: string; }; export declare type TaplyticsVariable = boolean | string | object | number; export declare type TaplyticsVariableMap = { [key: string]: TaplyticsVariable; };