import type { ColumnType } from 'antd/lib/table'; export type ColumnExtra = { [key in keyof T]: ColumnType; }; export declare function getColumns(extras?: ColumnExtra): ColumnType[]; export declare const tagsOptionType: { text: string; value: number; }[];