/// import type { PDSTextType, AdminListDropdownValueOption } from '../../../common/types'; type Props = { headerBarSize?: 'regular' | 'small'; headerBarTitleText?: PDSTextType; tooltipText?: PDSTextType; currentPage?: number; totalPage?: number; contentText?: PDSTextType; dropdownTextArray?: AdminListDropdownValueOption[]; dropdownDefaultValue?: AdminListDropdownValueOption; onChangeCount?: (option: AdminListDropdownValueOption) => void; onClickNextBtn?: () => void; onClickPrevBtn?: () => void; }; declare function AdminListHeader({ headerBarSize, headerBarTitleText, tooltipText, currentPage, totalPage, contentText, dropdownTextArray, dropdownDefaultValue, onChangeCount, onClickNextBtn, onClickPrevBtn }: Props): JSX.Element; export default AdminListHeader;