import { OthersProps, TableProps, TableState } from '../../../../@types';
import { BaseEntity } from 'nsn-entity';
import { Component } from 'react';
/**
 * table 工具栏中的其他按钮
 */
declare const OtherAction: <T extends BaseEntity, DT extends string>(props: {
    comp: Component<TableProps<T, DT>, TableState<T>>;
} & OthersProps<DT>) => JSX.Element;
export { OtherAction };
