import { GeoPathComposition } from '../../spec'; import { ValueAttribute, ObjectAttribute, Concrete } from '../types'; import { Mark } from '../mark'; import { Composition, CompositionNode } from './index'; type GeoPathSpec = Concrete; export interface GeoPath extends Mark, Composition { data: ValueAttribute; coordinate: ValueAttribute; interaction: ObjectAttribute; style: ObjectAttribute; theme: ObjectAttribute; scale: ObjectAttribute; encode: ObjectAttribute; legend: ObjectAttribute; state: ObjectAttribute; } export declare class GeoPath extends CompositionNode { constructor(); } export {};