import { ITableConfig } from '../VReportTable/type'; export interface ITableDialog { visible?: boolean; width?: string; class?: string; loading?: boolean; submitting?: boolean; type?: string; title?: string; api?: Function; form?: any; columns?: any[]; showPagination?: boolean; showButtonBar?: boolean; tableConfig?: ITableConfig; [key: string]: any; }