import type { SourceSpecification } from 'mapbox-gl'; import type { CustomSource } from '../../types/lib'; export interface Source { type: string; } export type SourceProps = (SourceT | CustomSource) & { id?: string; children?: React.ReactNode; };