import React from "react"; import { DataFilterType, DataOption } from "../types/filter.type"; export interface SetEditorProps { value: DataFilterType; options: (value: [string, string]) => Promise; onChange: (value: DataFilterType) => void; onEditting: (editting: boolean) => void; } export declare const SetEditor: React.FC; //# sourceMappingURL=body.auto.d.ts.map