import "./MapUrlDialog.scss"; import "./SelectMapFormat.scss"; import * as React from "react"; import type { MapTypesOptions } from "../Interfaces"; export declare const MAP_TYPES: { wms: string; arcGis: string; wmts: string; tileUrl: string; arcGisFeature: string; }; interface SelectMapFormatProps { value?: string; disabled?: boolean; mapTypesOptions?: MapTypesOptions; onChange?: (mapType: string) => void; /** * Message below the select. Does not apply to 'inline' select. */ message?: React.ReactNode; /** * Status of the select. * @default '' */ status?: "positive" | "warning" | "negative"; } export declare function SelectMapFormat(props: SelectMapFormatProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=SelectMapFormat.d.ts.map