@voiceiq/web-components
Version:
VoiceIQ Web Component library
23 lines (22 loc) • 868 B
TypeScript
import React from 'react';
import PropTypes from 'prop-types';
declare const TablePaginationNumberItemComponent: {
({ pageNumber, selected, component: Component, onClick }: {
pageNumber: any;
selected: any;
component: any;
onClick: any;
}): JSX.Element;
propTypes: {
component: PropTypes.Requireable<PropTypes.ReactComponentLike>;
pageNumber: PropTypes.Validator<number>;
selected: PropTypes.Requireable<boolean>;
onClick: PropTypes.Requireable<(...args: any[]) => any>;
};
defaultProps: {
component: React.ForwardRefExoticComponent<import("../../../Molecules/Button/Button.types").ButtonProps & React.RefAttributes<HTMLButtonElement>>;
selected: boolean;
onClick: () => null;
};
};
export default TablePaginationNumberItemComponent;