export interface typeColumn { key?: string; label?: string; props: string; align?: string; fixed?: boolean; resizable?: boolean; width?: number; minWidth?: number; maxWidth?: number; formatter?: Function; sortable?: boolean; className?: string; ellipsis?: boolean; } export declare const column: { key: string; label: string; prop: string; align: string; fixed: boolean; resizable: boolean; width: number; minWidth: number; maxWidth: number; formatter: string; sortOrder: boolean; className: string; }; declare const props: { columns: { type: ArrayConstructor; default(): never[]; }; dataSource: { type: ArrayConstructor; default(): never[]; }; sticky: { type: BooleanConstructor; default: boolean; }; stickyOffsetTop: { type: NumberConstructor; default: number; }; rowKey: { type: StringConstructor; default: string; }; activeRow: { type: StringConstructor; default: string; }; emptyText: { type: StringConstructor; default: string; }; scrollDisplayType: { type: StringConstructor; default: string; }; rowClassName: { type: FunctionConstructor; }; pagination: { type: (ObjectConstructor | BooleanConstructor)[]; default: boolean; }; loading: { type: BooleanConstructor; default: boolean; }; }; export default props;