import { FC, PropsWithChildren } from 'react'; import { LayerId } from '../../types'; type LayerElementProps = { id: LayerId; }; declare const LayerElement: FC>; export default LayerElement;