export interface errorType { error: { body: string; status: number; title: string; }; } export interface buttonTabsProps { activeTab: string; tabs: { name: string; handler: () => void; id: string; iconName: string; }[]; } export interface BreadcrumbPathMap { messageId?: string; name: string; href: string; isLast?: boolean; } export interface breadcrumbsProps { pathMap: BreadcrumbPathMap[]; } export interface commonHeaderProps extends errorType, buttonTabsProps, breadcrumbsProps { title: string; subTitle: string; }