export interface PrimaryTabProps { /** Items to be passed into the component as array of Objects */ items: Array<{ id: string | number; label?: string; divider?: boolean; }>; /** The change event callback */ onChange?: (id: string | number) => void; /** The item to be initially active */ initialActive: string | number; /** On compact view, items are collapsed or not */ initialCollapsed?: boolean; /** Controls whether the tab & popover be absolutely positioned. */ absolute?: boolean; } declare const PrimaryTab: ({ items, onChange, initialActive, initialCollapsed, absolute, ...other }: PrimaryTabProps) => JSX.Element; export default PrimaryTab;