import { SizeInPixels } from './SizeInPixels.js'; export declare class SizeInRelativeCoord { constructor(width?: number, height?: number); getSizeInPixels(baseSize: SizeInPixels): SizeInPixels; toString(): string; private _width; private _height; }