我应该在道具中使用哪种TypeScript类型来引用match对象?

在我的React容器/组件中,我可以使用哪种类型来引用matchReact Router DOM包含部分?

interface Props {
  match: any // <= What could I use here instead of any?
}

export class ProductContainer extends React.Component<Props> {
  // ...
}