interface DatasetWithContent {
    metadata: {
        id: string;
        name: string;
        description: string;
        layers?: any[];
        [key: string]: any;
    };
    [key: string]: any;
}
interface MapPreviewProps {
    allAvailableDatasets?: DatasetWithContent[];
    [key: string]: any;
}
export declare function ClientMapBlock(props: MapPreviewProps): import("react/jsx-runtime").JSX.Element;
export default ClientMapBlock;
//# sourceMappingURL=MapPreview.d.ts.map