/** * Basis Theory Configuration * * API keys and tenant IDs for Basis Theory integration * Key selection based on environment (production vs staging/dev) */ export declare const BASIS_THEORY_CONFIG: { readonly production: { readonly tenantId: "b1636929-db11-4b01-b2c2-6a97b3444061"; readonly publicKey: "key_prod_us_pub_PNMB2AiaECJ463K6QAPNU6"; }; readonly test: { readonly tenantId: "99821999-faf5-4427-a92c-9267cb930540"; readonly publicKey: "key_test_us_pub_VExdfbFQARn821iqP8zNaq"; }; }; /** * Get Basis Theory keys based on environment * * @param isProduction - Whether the environment is production * @returns Object with tenantId and apiKey */ export declare function getBasisTheoryKeys(isProduction: boolean): { tenantId: "b1636929-db11-4b01-b2c2-6a97b3444061" | "99821999-faf5-4427-a92c-9267cb930540"; apiKey: "key_prod_us_pub_PNMB2AiaECJ463K6QAPNU6" | "key_test_us_pub_VExdfbFQARn821iqP8zNaq"; };