import type { FunctionalComponent } from 'vue'; import './index.less'; declare type TableAlertProps = { selectedRowKeys?: (number | string)[]; selectedRows?: Record[]; alwaysShowAlert?: boolean; }; declare const TableAlert: FunctionalComponent; export default TableAlert;