import { Ref } from "vue"; interface Actions { add: (value: T) => void; remove: (value: T) => void; has: (value: T) => boolean; clear: () => void; reset: () => void; } declare function useSet(initialValue?: T[]): [state: Ref>, actions: Actions]; export default useSet;