declare const StyleRepository: {
    vertexStyle: {
        radius: number;
        fillColor: string;
        color: string;
        weight: number;
        opacity: number;
        fillOpacity: number;
    };
    previewVertexStyle: {
        radius: number;
        fillColor: string;
        color: string;
        weight: number;
        opacity: number;
        fillOpacity: number;
        interactive: boolean;
    };
    lineStyle: {
        color: string;
        opacity: number;
    };
    previewLineStyle: {
        dashArray: string;
        opacity: number;
    };
    polygonStyle: {
        color: string;
        fillColor: string;
        opacity: number;
        weight: number;
        fillOpacity: number;
    };
};
export default StyleRepository;
