import { VBAObjectType } from "./vba_object"; export declare class SVGToVBA { static convert(svgsvgID: string | SVGSVGElement): string; /** * 入力要素をPowerpoint上で作成するVBAコードを作成します。 * @param items */ static create(items: VBAObjectType[] | VBAObjectType | string): string; private static createVBACodeOfSVGElement; static cellFunctionCode: string; }