import { FieldType } from "@kre-form/core";
export declare class KreFormFieldSelect extends FieldType {
    _defaultValue: string;
    _defaultValues: string[];
    selectType: string;
    listOfSelectedValue: any;
    getModelValue: any;
    readonly defaultValue: string | null;
    readonly defaultValues: string[] | null;
    getSelectText(): string;
    selectedChange(e: any): void;
    readonly clear: boolean;
}
