import { FieldType } from "@kre-form/core";
import { KreFormAntService } from "../tools/service";
import { CdkDragDrop } from '@angular/cdk/drag-drop';
export declare class KreFormDragDrop extends FieldType {
    service: any;
    readonly insertQuestionIndex: number;
    constructor(dyService: KreFormAntService);
    drop(event: CdkDragDrop<string[]>): void;
    fieldOperational(sign: string): void;
    logicQuestion(field: any): void;
    copyQuestion(field: any): void;
    delQuestion(field: any): void;
    activeQuestion(field: any): void;
}
