import { IFilterBarItemProps } from '../../FilterBarItem'; import { IDropdownProps } from "./Dropdown.Props"; export interface IDropdownFilterBarItemProps extends IFilterBarItemProps, IDropdownProps { /** * Don't show the Clear action. */ hideClearAction?: boolean; /** * Set to true to include the placeholder as part of the selected label. */ showPlaceholderAsLabel?: boolean; /** * Untoggle filter bar on clear filter */ toggleFilterBar?: () => void; }