/// /** * The Table component is used for large amounts of information or structured data. * *```tsx * import * as React from "react" * import * as System from "@harborschool/lighthouse" * * export default () => { * return ( * * ) * } * ``` * @param headerCells - Array * @param dataCells - Array> * @param columnRatio - Array * @param overrides - \{ Wrap?: StyletronReact.StyleObject; Headers?: StyletronReact.StyleObject; HeaderCell?: StyletronReact.StyleObject; Datas?: StyletronReact.StyleObject; DataCell?: StyletronReact.StyleObject } */ export declare const Table: React.FC; export * from "./types"; import { TablePropsT } from "./types";