import type { IGroupGraphicAttribute } from './../../vrender';
import { Group } from './../../vrender';
import type { percentCalcObj } from './percent-calc';
export type IContainerOptions = {
    width?: number | percentCalcObj;
    height?: number | percentCalcObj;
    marginTop?: number;
    marginRight?: number;
    marginBottom?: number;
    marginLeft?: number;
} & IGroupGraphicAttribute;
export declare class Container extends Group {
    constructor(containerOptions: IContainerOptions);
}
