/// import type { ITableLayoutProps } from './Table'; import type { ITableCellLayoutProps } from './TableCell'; import type { ITableRowLayoutProps } from './TableRow'; import './minimalNativeTableLayout.less'; export declare const minimalNativeTableLayout: { TableLayout: ({ columns, children }: ITableLayoutProps) => JSX.Element; TableRowLayout: ({ children }: ITableRowLayoutProps) => JSX.Element; TableCellLayout: ({ children, indent }: ITableCellLayoutProps) => JSX.Element; };