import * as React from "react";
import ConfigurationPanelContent from "./ConfigurationPanelContent";
export default class GeoPushpinConfigurationPanel extends ConfigurationPanelContent {
    protected getControlProperties(): {
        groupNearbyPoints: any;
    };
    protected renderLegendSection(): JSX.Element;
    protected renderViewportSection(): React.ReactElement;
    protected renderPointsSection(): React.ReactElement;
    protected isControlDisabled(): boolean;
    protected getBubbleClassNames(): string;
    protected renderConfigurationPanel(): JSX.Element;
    protected renderColorSection(): JSX.Element;
}
