export declare class ObjectUtils {
    static getProp(source: Object | Array<any>, propertyAccessor: string, convertUndefinedToNull?: boolean): any;
    static setProp(target: any, propertyAccessor: string, value: any): any;
}
