import { Matrix } from "./Matrix";
export declare class SizeF {
    width: number;
    height: number;
    constructor(width?: number, height?: number);
    clone(): SizeF;
    toString(): string;
    updateByMatrix(matrix: Matrix): this;
}
