import { Edge } from '../../types'; import { ComputedRef } from 'vue'; import { MaybeRefOrGetter } from '@vueuse/shared'; /** * Takes an edge and returns the total length of the edge, along with the length of each segment. * * @see https://vuexyz.org/utilities/useEdgeLength */ export declare function useEdgeLength(edge: MaybeRefOrGetter): { length: ComputedRef; segmentLengths: ComputedRef; }; //# sourceMappingURL=index.d.ts.map