UNPKG

react-web-native-sketch

Version:

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

12 lines (11 loc) 382 B
import { TranslationFunction } from 'i18next'; import * as React from 'react'; import { TableRowAction } from './TableComponent.types'; import { Row } from './TableComponent.types'; interface TableActionProps { actions: Array<TableRowAction>; t: TranslationFunction; row: Row; } export declare const TableActionsColumn: React.ComponentType<TableActionProps>; export {};