/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { ReactElement } from 'react'; import PropTypes from 'prop-types'; type TypePaginationIconProps = { icon: ReactElement; size: number; disabled: boolean; action: () => void; name: string; theme: string; }; declare const PaginationIcon: { (props: TypePaginationIconProps): JSX.Element; propTypes: { name: PropTypes.Requireable; action: PropTypes.Requireable<(...args: any[]) => any>; disabled: PropTypes.Requireable; icon: PropTypes.Requireable; size: PropTypes.Requireable; }; }; export default PaginationIcon;