import { FieldType } from "@kre-form/core";
import { KreFormAntService } from "../../tools/service";
import { CdkDragDrop } from '@angular/cdk/drag-drop';
export declare class KreSurveyCheckBox extends FieldType {
    service: any;
    guid: any;
    constructor(dyService: KreFormAntService);
    addOption(): void;
    addOptions(): void;
    deleteOption(option: any): void;
    onChange(values: string[]): void;
    getCheckStatus(option: any): void;
    getControlChecked(values: any, option: any): boolean;
    drop(event: CdkDragDrop<string[]>): void;
}
