import { DestinationServer, sendServer } from '@walkeros/server-core'; import { Flow } from '@walkeros/core'; interface Env extends DestinationServer.Env { sendServer?: typeof sendServer; } declare const init: Env | undefined; declare const standard: Env; /** * Simulation tracking paths * Specifies which function calls to track during simulation */ declare const simulation: string[]; declare const env_init: typeof init; declare const env_simulation: typeof simulation; declare const env_standard: typeof standard; declare namespace env { export { env_init as init, env_simulation as simulation, env_standard as standard }; } declare const fullEvent: Flow.StepExample; declare const customHeaders: Flow.StepExample; declare const customTransform: Flow.StepExample; declare const step_customHeaders: typeof customHeaders; declare const step_customTransform: typeof customTransform; declare const step_fullEvent: typeof fullEvent; declare namespace step { export { step_customHeaders as customHeaders, step_customTransform as customTransform, step_fullEvent as fullEvent }; } export { env, step };