import { IconName } from '../Icon/Icon'; import { Elevation } from '../../interfaces'; export interface SecondaryTabProps { /** Items to be passed into the component as array of Objects */ items: Array<{ id: number | string; key?: number | string; icon?: IconName; label?: string; alert?: boolean; count?: number; divider?: boolean; checked?: boolean; }>; /** The change event callback */ onChange: (id: string | number) => void; /** The item to be initially active */ initialActive?: number; /** Use a count indicator balloon */ countIndicator?: boolean; /** Use a check indicator */ checkIndicator?: boolean; /** Hide the check indicator from the items with these keys */ hideCheckIndicator?: Array; /** Transparent */ transparent?: boolean; /** The background card elevation determining the shadow */ elevation?: Elevation; } declare const SecondaryTab: ({ items, countIndicator, checkIndicator, transparent, hideCheckIndicator, elevation, onChange, initialActive, ...other }: SecondaryTabProps) => JSX.Element; export default SecondaryTab;