import { FC } from 'react'; interface CatagoryDrawerProps { datasetId: string; visible: boolean; onClose: (update: boolean) => void; } declare const CatagoryDrawer: FC; export default CatagoryDrawer;