import React from 'react'; import './index.less'; import { UserTagTypes } from '../../types/userTags'; export interface LayerConfigPropsI { value?: UserTagTypes.Layer; onChange?: (value: any) => void; nameExist: boolean; } export declare const classPrefix = "module-user-component-layer"; declare const LayerConfig: (props: LayerConfigPropsI) => React.JSX.Element; export default LayerConfig;