import { Stripe, Environment } from '../types'; import { Feature } from '../utils/message'; /** * Sets up fraud signals and events by injecting a script into * the document `` that loads supporting code. This will * also happen on instantiation of an Olo Pay feature, but can * be called early to improve fraud detection. */ declare function initializeOloPay(): Promise; /** * Sets up Stripe in development or production mode. */ declare function configureStripe(feature: Feature, env: Environment): Promise; declare function normalizeCardBrand(brand: string): string; export { initializeOloPay, configureStripe, normalizeCardBrand };