import type { IRectGraphicAttribute } from './../../vrender';
import { Rect as VRect } from './../../vrender';
type IRectOption = {
    marginTop?: number;
    marginRight?: number;
    marginBottom?: number;
    marginLeft?: number;
} & IRectGraphicAttribute;
export declare class Rect extends VRect {
    constructor(options: IRectOption);
}
export {};
