export * from "./StringHelpers";
export * from "./TestHelpers";
export * from "./Guards";
export * from './VariableProxy';
export * from './PropertyChain';
export * from './UtilDecorations';
export * from "./Promise";
export * from "./Flag";
/**
 * Retrieve a deep property by string
 *
 * dot separated .
 *
 * @param o
 * @param path
 * @param defaultValue
 * @returns {T}
 */
export declare function getProperty<T>(o: any, path: string, defaultValue?: T): T;
