UNPKG

react-web-native-sketch

Version:

[TODO: We need an overview of how this can be used via npm vs as a local package]

13 lines (12 loc) 430 B
import * as React from 'react'; import { TableColumn, TableData, TableRowAction } from "./TableComponent.types"; export interface OwnProps { columns: Array<TableColumn>; refreshMethod?: () => void; tableActions?: Array<TableRowAction>; tableData?: TableData; title: string; hideRefreshButton?: boolean; hideExportButton?: boolean; } export declare const TableTopActions: React.ComponentType<OwnProps>;