import { FC } from 'react'; import { ShapeLayerProps } from '../../layers/ShapeLayer'; import { Layer } from '../../types'; interface ShapeSettingsProps { layers: Layer[]; } declare const ShapeSettings: FC; export default ShapeSettings;