import { DestinationServer } from '@walkeros/server-core'; import { OAuth2Client } from 'google-auth-library'; import { Flow } from '@walkeros/core'; interface Env extends DestinationServer.Env { fetch?: typeof fetch; authClient?: OAuth2Client | null; } declare const push: Env; declare const simulation: string[]; declare const env_push: typeof push; declare const env_simulation: typeof simulation; declare namespace env { export { env_push as push, env_simulation as simulation }; } declare const purchase: Flow.StepExample; declare const lead: Flow.StepExample; declare const ga4PageView: Flow.StepExample; declare const step_ga4PageView: typeof ga4PageView; declare const step_lead: typeof lead; declare const step_purchase: typeof purchase; declare namespace step { export { step_ga4PageView as ga4PageView, step_lead as lead, step_purchase as purchase }; } export { env, step };