/// import type { IFormValues, PDSTextType, PDSValueOption } from '../../../common'; import type { Path } from 'react-hook-form'; export type FilterBarProps = { displayType?: 'chips' | 'searchfield' | 'filterchips_searchfield'; textArray: PDSValueOption[]; hintText?: PDSTextType; value?: PDSValueOption; name?: Path; onClickChip?: (option: PDSValueOption) => void; /** @deprecated value 필드를 대신 사용하세요. */ activeChipId?: string | number; }; export default function FilterBar({ displayType, textArray, hintText, value, name, onClickChip, activeChipId }: FilterBarProps): JSX.Element;