import * as _walkeros_core_dev from '@walkeros/core/dev'; import { z } from '@walkeros/core/dev'; import { DestinationServer, sendServer } from '@walkeros/server-core'; import { Flow } from '@walkeros/core'; declare const SettingsSchema: z.ZodObject<{ url: z.ZodString; headers: z.ZodOptional>; method: z.ZodOptional; timeout: z.ZodOptional; }, z.core.$strip>; type Settings = z.infer; declare const settings: _walkeros_core_dev.JSONSchema; type index$1_Settings = Settings; declare const index$1_SettingsSchema: typeof SettingsSchema; declare const index$1_settings: typeof settings; declare namespace index$1 { export { type index$1_Settings as Settings, index$1_SettingsSchema as SettingsSchema, index$1_settings as settings }; } 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 }; } declare const index_env: typeof env; declare const index_step: typeof step; declare namespace index { export { index_env as env, index_step as step }; } export { index as examples, index$1 as schemas };