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