export declare class ViewBox {
    width: number;
    height: number;
    constructor({ width, height }: {
        width: number;
        height: number;
    });
    getWidth: () => number;
    getHeight: () => number;
    getCenterCoord: () => {
        x: number;
        y: number;
    };
}
//# sourceMappingURL=ViewBox.d.ts.map