import { ActiveDotType, DotType } from './types';
export declare function getRadiusAndStrokeWidthFromDot(dot: ActiveDotType | DotType): {
    r: number;
    strokeWidth: number;
};
