import { DestinationServer, sendServer } from '@walkeros/server-core'; import { Flow } from '@walkeros/core'; interface Env extends DestinationServer.Env { sendServer?: typeof sendServer; } /** * Standard mock environment for push operations * * Use this for testing Meta Conversions API events without making * actual HTTP requests to Facebook's servers. */ 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 purchaseWithClickAttribution: Flow.StepExample; declare const step_lead: typeof lead; declare const step_purchase: typeof purchase; declare const step_purchaseWithClickAttribution: typeof purchaseWithClickAttribution; declare namespace step { export { step_lead as lead, step_purchase as purchase, step_purchaseWithClickAttribution as purchaseWithClickAttribution }; } export { env, step };