import type { FieldData } from '@/types'; import type { Base, Title } from '@/components/types'; export interface BasicTableProps extends Base, Title { border?: 'border' | 'noBorder' | 'zebra' | 'divider'; tableMode?: 'normal' | 'zebra'; yAxisData?: FieldData[]; isPagination?: boolean; paginationSize?: 'default' | 'small'; tableSize?: 'large' | 'small' | 'middle'; pageSize?: number; fixHeader: boolean; maxContentHeight?: number; maxContentWidth?: number; optionFilterList?: any[]; mainColor?: string; headerTextColor?: string; contentTextColor?: string; contentTextAlign?: 'left' | 'center' | 'right'; headerBorderColor?: string; borderColor?: string; showSerialNum?: string; }