import { IRow, Table } from "../Table"; export interface IExportApi { loading: boolean; progress?: number; exportTable: () => void; attachTable: (ref: Table) => void; }