import type { WMSCapabilities } from '@loaders.gl/wms';
import type { VectorTileMetadata } from '@kepler.gl/table';
import type { StacTypes } from '@kepler.gl/types';
export declare type DatasetCreationAttributes = {
    name: string;
    type: string;
    metadata: Record<string, any>;
};
export declare type MetaResponse = {
    metadata?: VectorTileMetadata | StacTypes.CompleteSTACObject | WMSCapabilities | null;
    dataset?: DatasetCreationAttributes | null;
    loading?: boolean;
    error?: Error | null;
};
