import { Shape } from '../../shapes/shape';
export declare class JSONShapeConverter {
    static convertFromJSON(obj: any): Shape;
    static convertToJSON(source: Shape): any;
}
