import { JlGraphicTemplate } from 'jl-graphic'; import { JlPlatform } from './JlPlatform'; import { IPlatformData } from './PlatformConfig'; import { ITHPlatformState } from './THPlatform'; import { IGPPlatformState } from './GPPlatform'; import { StyleType } from 'common/common'; export declare class PlatformTemplate extends JlGraphicTemplate { hasdoor?: boolean; direction?: string; styleType: StyleType; constructor(dataTemplate: IPlatformData, stateTemplate: ITHPlatformState | IGPPlatformState, styleType: StyleType); new(): JlPlatform; }