import { Execution } from "@gooddata/typings";
import { IUnwrappedAttributeHeaderWithItems } from "../../components/visualizations/typings/chart";
import { IGeoData } from "../../interfaces/GeoChart";
export interface IGeoAttributesInDimension {
    locationAttribute: IUnwrappedAttributeHeaderWithItems;
    segmentByAttribute: IUnwrappedAttributeHeaderWithItems;
    tooltipTextAttribute: IUnwrappedAttributeHeaderWithItems;
}
export declare function findGeoAttributesInDimension(execution: Execution.IExecutionResponses, geoData: IGeoData): IGeoAttributesInDimension;
