import React from 'react'; declare type ContetSwitcherAttributes = React.ComponentPropsWithoutRef<'div'>; export interface ContentSwitcherProps extends Omit { /** * Set the component className. */ className?: string; /** * Set the component data-testid value. */ dataTestId?: string; /** * Set index of active ContentSwitcher item. */ indexActive?: number; /** * Set selection items as option to choose. */ selections?: string[]; /** * Set callback function when ContentSwithcer item clicked. */ onItemClick?: (item: string, index: number) => void; } export interface ItemProps { active?: boolean; } interface ItemHighlightDimension { width?: number; xPos?: number; } export interface ItemHighlightProps { mod?: ItemHighlightDimension; } export {};