import { createThreeDSecureSession } from "./functions/createThreeDSecureSession/createThreeDSecureSession";
import { hasService } from "./functions/hasService";
import { hasAvailableSeatService } from "./lib/hasAvailableSeatService";
declare global {
    interface Window {
        createThreeDSecureSession: typeof createThreeDSecureSession;
        hasAvailableSeatService: typeof hasAvailableSeatService;
        hasService: typeof hasService;
    }
}
