import React from 'react'; import { Object3D } from 'three'; import { OutlineEffect } from './OutlineEffect'; export declare type OutlineProps = ConstructorParameters[2] & Partial<{ selections1: Object3D[][]; selections2: Object3D[][]; selections3: Object3D[][]; selectionLayer: number; }>; export declare const Outline: React.ForwardRefExoticComponent<{ width?: number | undefined; edgeColor1?: [import("three").ColorRepresentation, import("three").ColorRepresentation] | undefined; edgeColor2?: [import("three").ColorRepresentation, import("three").ColorRepresentation] | undefined; edgeColor3?: [import("three").ColorRepresentation, import("three").ColorRepresentation] | undefined; } & Partial<{ selections1: Object3D[][]; selections2: Object3D[][]; selections3: Object3D[][]; selectionLayer: number; }> & React.RefAttributes>;