export declare enum ABTestKeys { BOND_DESCRIPTION = "bondDescription", BOND_BUY_BUTTON = "bondBuyButton", BOND_BUY_ARR = "bondBuyArr" } export default function useABTesting({ key, defaultValue, }: { key: ABTestKeys; defaultValue?: string; }): { abTestValue: string; };