import { Data } from "../types/index.js"; /** * Takes a data object with { [path.key]: value } and returns { [key]: value }. * Also warns when two similar keys are being used by the user. * * @param data * @param paths * @param shouldWarn */ export declare function getValuesForPaths(data: Data, paths: string[]): { [path: string]: any; };