interface DatasetWithContent {
    metadata: {
        id: string;
        name: string;
        description: string;
        taxonomy?: any[];
        layers?: any[];
        [key: string]: any;
    };
    [key: string]: any;
}
declare const allAvailableDatasets: DatasetWithContent[];
export { allAvailableDatasets };
//# sourceMappingURL=alldatasets.d.ts.map