import type { DataSourceInfo, FieldData } from '@/types'; import type { TableProps } from 'antd/lib/table'; export interface BasicTableProps extends Omit, 'title'> { hasTitle?: boolean; title?: string; titleFontSize?: number; titleTextAlign?: 'left' | 'right' | 'center'; border?: 'border' | 'noBorder'; limit: number; dataSourceInfo: DataSourceInfo; yAxisData: FieldData[]; isPagination?: boolean; paginationSize?: 'default' | 'small'; tableSize?: 'large' | 'small' | 'middle'; pageSize?: string; fixHeader?: boolean; maxContentHeight?: string; }