import { GraphicState } from 'jl-graphic'; import { CategoryType } from './PlatformConfig'; import { JlPlatform } from './JlPlatform'; export interface IBeiJingPlatformState extends GraphicState { id?: number; } export declare class BeiJingPlatform extends JlPlatform { constructor(categoryType: CategoryType); get states(): IBeiJingPlatformState; doRepaint(): void; }