/**
 * 根据路径解析值
 */
declare function parsePath<T = any>(obj: Record<string, any>, path: string): T;

export { parsePath };
