import { OnInit, OnChanges, OnDestroy, SimpleChanges } from "@angular/core";
import { KreFormFieldConfig } from "@kre-form/core";
import { IBusinessTable } from "../../tools/util";
export declare class KreFormDesignTable implements OnInit, OnChanges, OnDestroy {
    tableType: string;
    businessTable: IBusinessTable;
    fieldConfig: KreFormFieldConfig;
    tableData: never[];
    mapOfCheckedId: {
        [key: string]: boolean;
    };
    tableScroll: {
        y: string;
        x: string;
    };
    constructor();
    ngOnInit(): void;
    ngOnChanges(changes: SimpleChanges): void;
    ngOnDestroy(): void;
    initTableData(): void;
}
