Here's the type definitions for TabsConfig. You don't need to go through this, if your code editor has TS/auto-completion support, it will do the job for you.
export type TabConfig<K = unknown> = Prettify<
{
enabled?: boolean
orderIndex?: number
} & K
>
export type IBCSwapTabConfig = TabConfig<
IBCSwapsProps
>
export type FiatOnRampTabConfig = TabConfig<
FiatOnRampProps
>
export type AggregatedSwapTabConfig = TabConfig<
SwapsProps
>
export type TransferTabConfig = TabConfig<
IBCTransferProps
>
export type TabsConfig = {
[Tabs.SWAP]?: IBCSwapTabConfig
[Tabs.TRANSFER]?: TransferTabConfig
[Tabs.FIAT_ON_RAMP]?: FiatOnRampTabConfig
[Tabs.AGGREGATED]?: AggregatedSwapTabConfig
}