export interface Source {
    attribution: string;
    options: {
        attribution: string;
    };
}
export interface SourceCache {
    getSource: () => Source;
    used: boolean;
}
/**
 * Return the copyright a Maplibre map.
 * @param {maplibregl.Map} map A Maplibre map
 * @private
 */
declare const getMapGlCopyrights: (map: maplibregl.Map) => string[];
export default getMapGlCopyrights;
