How do I configure the expect timeout from synthetic config

In the playwright config, I can set the expect timeout as below:-

const config: PlaywrightTestConfig = {
  timeout: 120_000,
  expect: {
    timeout: 15_000,
  },
},

Question: Is there any JourneyConfig that allows set the expect timeout?