/// import type { AdminListDropdownValueOption } from '../../../common/types'; import type { TFunctionResult } from 'i18next'; type Props = { titleText?: TFunctionResult; size?: 'regular' | 'small'; currentPage?: number; totalPage?: number; dropdownTextArray: AdminListDropdownValueOption[]; dropdownDefaultValue?: AdminListDropdownValueOption; onChangeDropdown?: (option: AdminListDropdownValueOption) => void; onClickIBtn1?: () => void; onClickIBtn2?: () => void; }; declare function HeaderBar({ titleText, size, currentPage, totalPage, dropdownTextArray, dropdownDefaultValue, onChangeDropdown, onClickIBtn1, onClickIBtn2 }: Props): JSX.Element; export default HeaderBar;