/// import type { AdminListDropdownValueOption } from '../../../common'; import type { TFunctionResult } from 'i18next'; type Props = { headerBarSize?: 'regular' | 'small'; headerBarTitleText?: TFunctionResult; currentPage?: number; totalPage?: number; contentText?: TFunctionResult; filterBar?: React.ReactNode; dropdownTextArray?: AdminListDropdownValueOption[]; dropdownDefaultValue?: AdminListDropdownValueOption; onChangeCount?: (option: AdminListDropdownValueOption) => void; onClickNextButton?: () => void; onClickPrevButton?: () => void; /** @deprecated v1.5 totalPage를 받아오기 때문에 deprecated 될 예정입니다. */ itemCountUnit?: number; }; declare function AdminListHeader({ headerBarSize, headerBarTitleText, itemCountUnit, currentPage, totalPage, contentText, filterBar, dropdownTextArray, dropdownDefaultValue, onChangeCount, onClickNextButton, onClickPrevButton }: Props): JSX.Element; export default AdminListHeader;