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