/// import type { StyleSpecification } from 'maplibre-gl'; interface IProps { onSubmit?: (arg: StyleSpecification | null) => void; onCancel?: (arg: StyleSpecification | null) => void; } export default function LayersEditor({ onSubmit, onCancel }: IProps): JSX.Element; export {};