import "@benev/slate/x/node.js";
import { AsSchema, Taxon } from "./parts/types.js";
export type FilesystemSchema = AsSchema<{
    taxon: Taxon;
    specimens: {
        folder: {
            label: string;
        };
        file: {
            label: string;
        };
    };
}>;
