import React from 'react'; export declare const markerGroups: { readonly restaurant: { readonly id: "restaurant"; readonly name: "Restaurantes"; readonly color: "var(--destructive)"; readonly iconColor: "#FFFFFF"; readonly iconName: "utensils"; readonly icon: React.ForwardRefExoticComponent & React.RefAttributes>; }; readonly hotel: { readonly id: "hotel"; readonly name: "Hotéis"; readonly color: "var(--info)"; readonly iconColor: "#FFFFFF"; readonly iconName: "hotel"; readonly icon: React.ForwardRefExoticComponent & React.RefAttributes>; }; readonly landmark: { readonly id: "landmark"; readonly name: "Pontos Turísticos"; readonly color: "var(--success)"; readonly iconColor: "#FFFFFF"; readonly iconName: "landmark"; readonly icon: React.ForwardRefExoticComponent & React.RefAttributes>; }; readonly shopping: { readonly id: "shopping"; readonly name: "Compras"; readonly color: "var(--warning)"; readonly iconColor: "#FFFFFF"; readonly iconName: "shopping"; readonly icon: React.ForwardRefExoticComponent & React.RefAttributes>; }; readonly cafe: { readonly id: "cafe"; readonly name: "Cafeterias"; readonly color: "var(--primary)"; readonly iconColor: "#FFFFFF"; readonly iconName: "coffee"; readonly icon: React.ForwardRefExoticComponent & React.RefAttributes>; }; }; export type MarkerGroupId = keyof typeof markerGroups; /** * Componente de Mapa com Filtro de Grupos * Permite filtrar marcadores por categorias com interface integrada no mapa * COMPACTO: Usa checkboxes para economia de espaço */ export interface FilterableMapExampleProps { apiKey?: string; } export declare function FilterableMapExample({ apiKey }: FilterableMapExampleProps): import("react/jsx-runtime").JSX.Element;