import React from 'react'; import { BizTableProps } from './BizTable'; import { BizTableActionType, BizTableRequest, BizTableColumnsType } from './interface'; declare function BizTable(props: BizTableProps): React.JSX.Element; export type { BizTableActionType, BizTableRequest, BizTableColumnsType, BizTableProps }; export default BizTable;