/**
 * Gets the value at `path` of `object`.
 * @param object
 * @param path
 * @returns value if exists else undefined
 */
export declare function get(object: Record<string, any>, path: string | any[]): any;
