/// <reference types="react" />
import { StyleRules } from "../../utils/theme.types";
import { TableRowAction } from '../TableComponent/TableComponent.types';
export interface OwnProps {
    children: JSX.Element;
    containerStyle?: StyleRules;
    actions: Array<TableRowAction>;
}
