import React from 'react'; import type { NativeProps } from '@zbanx/mobile-utils'; import './index.less'; export interface SimpleTableProps extends NativeProps { data: TData[]; columns: SimpleTableColumnsProps[]; } export declare type SimpleTableColumnsProps = { title: string; key: string; flex?: number; render?: (item: TData) => React.ReactNode; }; declare function SimpleTable(props: SimpleTableProps): JSX.Element; export default SimpleTable;