import { BasemapsUIProps } from './types'; import { JSX } from 'react'; /** * Provides an interactive basemap selector with responsive drawer, grouping support, and customizable positioning. * * @remarks * This is an uncontrolled component focused on UI presentation. Typically used with the `BasemapsControls` HOC from `@carto/ps-react-maps` for automatic state management. * * @example * ```tsx * * {({ basemap, setBasemap }) => ( * * )} * * ``` */ export declare function BasemapsUI({ options, labels: _labels, position, selected, onChange, TooltipProps, }: BasemapsUIProps): JSX.Element;