import React from 'react'; import { DataOption } from '../types/filter.type'; export interface DataSetProps { options: (value: [string, string]) => Promise, } export const DataSet: React.FC = () => { return <> }