import React from "react"; import { TableColumn } from "./TableProps"; import { StyledProps } from "../_type"; export interface TableBoxProps extends StyledProps { columns: TableColumn[]; children: React.ReactChild; classPrefix: string; } export declare function TableBox({ columns, children, classPrefix, style, }: TableBoxProps): JSX.Element; export declare namespace TableBox { var displayName: string; }