/** * Tab interface * * @property tabIndex - The index of the tab * @property isComplete - Whether the tab is marked as complete * @property isHidden - Whether the tab is hidden */ export type Tab = { tabIndex: number; isComplete: boolean; isHidden: boolean; }; /** * Key-value pair of tabs `Record` */ export type Tabs = Record;