import { type ComputedRef } from 'vue'; import { type MaybeRef } from '@vueuse/core'; import { type SelectOptionWithPlainLabel } from '../types'; interface UseDigitalStampRanges { ranges: ComputedRef[]>; currentRange: ComputedRef>; } export declare const useDigitalStampRanges: (weight: MaybeRef) => UseDigitalStampRanges; export {};