type NestedObject = {
    [key: string]: string | NestedObject;
};
export declare const getValueByPath: (object: NestedObject, path: string) => string | undefined;
export {};
