import { ExtractPropTypes, PropType } from "vue";
import { SearchField, SearchFieldValueType } from "./composition/types";
export declare const fieldSearchBoxProps: {
    /**
     * 字段列表
     * @default []
     */
    fields: {
        type: PropType<SearchField[]>;
        default: never[];
    };
    defaultValue: {
        type: PropType<{
            field: string;
            value: SearchFieldValueType;
        }>;
        default: null;
    };
};
export type FieldSearchBoxProps = ExtractPropTypes<typeof fieldSearchBoxProps>;
