import { CoordinateCtor } from './coord/base'; /** * 通过类型获得 coordinate 类 * @param type */ export declare const getCoordinate: (type: string) => CoordinateCtor; /** * 注册 coordinate 类 * @param type * @param ctor */ export declare const registerCoordinate: (type: string, ctor: CoordinateCtor) => void; export * from './interface';