declare const _default: "api options"; export default _default; /** * A projection definitions. */ export type Projection = { /** * The definition. */ definition: string[]; /** * The extent. */ extent: number[]; }; export type APIConfig = { themesUrl?: string; localeUrl?: string; searchUrl?: string; projection?: string; projections?: { [x: string]: Projection; }; resolutions?: number[]; extent?: number[]; backgroundLayer?: string; queryableLayers?: string[]; };