/** * Access properties of nested containers using dot-path notation * Returns `undefined` if any container is not valid, instead of throwing * @param container - container that supports get * @param compositeKey - key to access, can be '.'-separated string * @return value in the final key of the nested container, or `undefined` */ export declare function get(container: Record, compositeKey: string): unknown; //# sourceMappingURL=get.d.ts.map