import { GraphicState } from 'jl-graphic'; import { JlStation } from './common/JlStation'; export interface IGPStationState extends GraphicState { id: number; } export declare class GPStation extends JlStation { constructor(); get states(): IGPStationState; doRepaint(): void; }