import { Style } from './Style';
export declare class SvgGroup {
    id: string;
    svgGroupContainer: SVGGElement;
    constructor(id?: string, style?: Style | string);
    append(child: any): void;
    clear(): void;
}
