import { ReactNode } from 'react'; import CSS from 'csstype'; declare function DataTable({ primaryKey, data, width, height, color, style, rowStyle, headersStyle, margin, padding, rowGap, colGap, itemMargin }: { primaryKey: string; data: { [index: string]: ReactNode; }[]; width?: string; height?: string; color?: string; style?: CSS.Properties; rowStyle?: CSS.Properties; headersStyle?: CSS.Properties; margin?: string; padding?: string; rowGap?: string; colGap?: string; itemMargin?: string; }): JSX.Element; export default DataTable;