import * as React from "react"; import { ViewProps } from "../View"; export interface TableProps extends ViewProps { header?: React.ReactNodeArray; rows: React.ReactNodeArray; } /** * The `table` component takes in two props, rows, and headers, and then automatically applies styling. There are a number of defined table components listed, such as `TH`, `TR`, and `TD`, that should be used with Go1d. */ declare const Table: React.SFC; export default Table;