import { GeoViewComposition } from '../../spec'; import { ValueAttribute, ObjectAttribute, ArrayAttribute, Concrete } from '../types'; import { Mark } from '../mark'; import { Composition, CompositionNode } from './index'; type GeoViewSpec = Concrete; export interface GeoView extends Mark, Composition { data: ValueAttribute; key: ValueAttribute; coordinate: ArrayAttribute; interaction: ObjectAttribute; style: ObjectAttribute; theme: ObjectAttribute; scale: ObjectAttribute; legend: ObjectAttribute; } export declare class GeoView extends CompositionNode { constructor(); } export {};