import { BaseSopOperation } from './_Base';
import { DefaultOperationParams } from '../_Base';
import { CoreGroup } from '../../geometry/Group';
interface SvgSopParams extends DefaultOperationParams {
    url: string;
    drawFillShapes: boolean;
    fillShapesWireframe: boolean;
    drawStrokes: boolean;
    strokesWireframe: boolean;
}
export declare class SvgSopOperation extends BaseSopOperation {
    static readonly DEFAULT_PARAMS: SvgSopParams;
    static type(): Readonly<'svg'>;
    cook(input_contents: CoreGroup[], params: SvgSopParams): Promise<CoreGroup>;
    private _ensure_geometry_has_index;
}
export {};
