export declare const fakeLocationList: ({ id: string; name: string; source: string; group: string; } | { id: string; name: string; source: string; group?: undefined; })[]; export declare const fakeLocationDetailList: ({ id: string; name: string; source: string; group: string; lat: number; lon: number; geometry: null; bbox?: undefined; } | { id: string; name: string; source: string; group: string; lat: number; lon: number; bbox: number[]; geometry?: undefined; } | { id: string; name: string; source: string; lon: number; lat: number; group?: undefined; geometry?: undefined; bbox?: undefined; } | { lat: number; lon: number; source: string; id: string; name: string; geometry: { type: string; geometry: { type: string; coordinates: number[]; }; properties?: undefined; }; group?: undefined; bbox?: undefined; } | { id: string; name: string; source: string; lat: number; lon: number; geometry: { type: string; properties: {}; geometry: { type: string; coordinates: number[][]; }; }; group?: undefined; bbox?: undefined; } | { id: string; name: string; source: string; lat: number; lon: number; geometry: { type: string; geometry: { type: string; coordinates: number[][][]; }; properties: {}; }; group?: undefined; bbox?: undefined; } | { id: string; name: string; source: string; lat: number; lon: number; geometry: { type: string; geometry: { type: string; coordinates: number[][][][]; }; properties: {}; }; group?: undefined; bbox?: undefined; } | { id: string; name: string; source: string; lat: number; lon: number; bbox: number[]; group?: undefined; geometry?: undefined; })[]; export declare const locationApiEndpoints: import("msw").HttpHandler[];