import type { CSSUnitValue } from '../css'; import type { DisplayObjectConfig } from '../dom'; import type { BaseStyleProps, ParsedBaseStyleProps } from '../types'; import { DisplayObject } from './DisplayObject'; export interface GroupStyleProps extends BaseStyleProps { width?: number | string; height?: number | string; } export interface ParsedGroupStyleProps extends ParsedBaseStyleProps { width?: CSSUnitValue; height?: CSSUnitValue; } /** * its attributes are inherited by its children. * @see https://developer.mozilla.org/zh-CN/docs/Web/SVG/Element/g * * @example * */ export declare class Group extends DisplayObject { static PARSED_STYLE_LIST: Set; constructor(options?: DisplayObjectConfig); } //# sourceMappingURL=Group.d.ts.map