import { CSSProperties } from 'styled-components'; import { NumberFormat, SerialStyleList } from '../type'; export declare const getColStyle: (columnConfig: any, i: any, code: any) => { width: any; y: any; x: any; marginLeft: any; align?: undefined; borderWidth?: undefined; borderColor?: undefined; borderRadius?: undefined; } | { width: any; align: any; y: any; x: any; marginLeft: any; borderWidth: any; borderColor: any; borderRadius: any; }; export declare const contactSuffix: (suffixConfig: any) => string; export declare const numberForMat: (num: number, forMat?: NumberFormat) => any; export declare const gradientColor: (startColor: any, endColor: any, step: any) => string[]; export declare const getSerialStyle: (item: any, index: number, serialStyleList?: SerialStyleList[]) => { bgStyle: CSSProperties; valStyle: CSSProperties; }; export declare const compareTableData: (oldData: any[], newData: any[], keys?: string[]) => boolean;