import React from 'react'; import { IconProps } from '../icons/create-styled-icon'; export interface ChipProps { label: string; value: string; isExternal?: boolean; openInNewTab?: boolean; iconProps?: IconProps; } export interface NavigationChipsProps { chips: ChipProps[]; onChange: (chip: ChipProps | undefined) => void; disableSearch?: boolean; onSearchSubmit?: (val: string) => void; placeholder?: string; searchRedirectUrl?: string; defaultSelection?: ChipProps; allowEmptyChips?: boolean; hasExpanded?: (expand: boolean) => void; toggleExpandable?: boolean; showExpandable?: boolean; cap?: number; allowTriggerOnDefaultSelection?: boolean; disableSettings?: boolean; } declare const NavigationChips: React.FC; export default NavigationChips;