/** * Simple accessor function which can be used to retrieve properties from a record using a dot notation. */ export declare function readProperty(object: { [key: string]: any; }, path: string): any | undefined;