/** * Legacy Path Helpers that use simple string / any correlation for old TypeScript versions. * * TypeScript >=4.1 will use `path-helpers.ts`. See that file for actual documentation of these methods. */ export declare type PathOf = object extends Values ? any : string; export declare type ValueMatchingPath = any; export declare type PathMatchingValue = object extends Values ? any : string;