import { VariableStatement } from 'typescript'; /** * does not support array types within objects as it's currently not supported * * ref: https://stackoverflow.com/questions/45942118/lodash-return-array-of-values-if-the-path-is-valid * * @param input object input * @param path dot notation path for the provided input * @param accumlator array * @returns returns value at the end of object */ export declare const fetchByPath: >(input: T, path: string, accumlator?: any[]) => any; /** * get the generated output of the fetchByPath function in TS AST * * @returns VariableStatement */ export declare const getFetchByPathNodeFunction: () => VariableStatement;