import * as _walkeros_core_dev from '@walkeros/core/dev'; import { DestinationServer } from '@walkeros/server-core'; import { OAuth2Client } from 'google-auth-library'; import { Flow } from '@walkeros/core'; declare const settings: _walkeros_core_dev.JSONSchema; declare const mapping: _walkeros_core_dev.JSONSchema; declare const schemas_mapping: typeof mapping; declare const schemas_settings: typeof settings; declare namespace schemas { export { schemas_mapping as mapping, schemas_settings as settings }; } 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 }; } 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, schemas };