export declare function isURLTemplate(s: string): boolean; /** * https://github.com/openlayers/openlayers/blob/main/src/ol/tileurlfunction.js * @param {string} url URL. * @return {Array} Array of urls. */ export declare function expandUrl(url: string): string[]; export declare function getURLFromTemplate(template: string, properties: { x: number; y: number; z: number; }): string; /** * wmts url */ export declare function getWMTSURLFromTemplate(template: string, properties: { x: number; y: number; z: number; layer: string; version?: string; style?: string; format: string; service?: string; tileMatrixset: string; }): string;