import { IconName } from '../Icon/Icon'; export interface PrimaryTabProps { /** Items to be passed into the component as array of Objects */ items: Array<{ id: string | number; icon?: IconName; heading?: string; subHeading?: string; alert?: boolean; }>; /** The change event callback */ onChange: (id: string | number) => void; /** The item to be initially active */ initialActive: number; } declare const PrimaryTab: ({ items, onChange, initialActive, ...other }: PrimaryTabProps) => JSX.Element; export default PrimaryTab;