import type { UnwrapRef } from 'vue'; /** * Reactively pick fields from a reactive object * * @see https://vueuse.js.org/reactivePick */ export declare function reactivePick(obj: T, ...keys: K[]): { [S in K]: UnwrapRef; };