import { Group } from 'three/src/objects/Group';
import { PolyScene } from '../../engine/index_all';
interface CoreSVGLoaderOptions {
    drawFillShapes: boolean;
    fillShapesWireframe: boolean;
    drawStrokes: boolean;
    strokesWireframe: boolean;
}
export declare class CoreSVGLoader {
    private url;
    private scene;
    constructor(url: string, scene: PolyScene);
    load(options: CoreSVGLoaderOptions): Promise<Group>;
    private _onLoaded;
    private _drawShapes;
    private _drawStrokes;
}
export {};
