UNPKG

grepsr-ui-elements

Version:

28 lines (27 loc) 737 B
import { ReactNode, SyntheticEvent } from "react"; import PropTypes from "prop-types"; interface tabArray { label: string | ReactNode; value: string | number; content: string | ReactNode; } interface BlockTabTableProps { value?: any; onChange: (event: SyntheticEvent, newValue: string) => void | undefined; tabArray: tabArray[]; alignItems: string; className?: string | undefined; sx?: any; children?: ReactNode; } export { BlockTabTableProps }; declare const GrepsrBlockTabsTable: { (props: BlockTabTableProps): JSX.Element; defaultProps: { className: string; }; propTypes: { alignItems: PropTypes.Validator<string>; }; }; export default GrepsrBlockTabsTable;