import { Fields } from '../data-set/Field';
export declare function get(obj: object | undefined | null, prop: string): any;
export declare function set(data: object, prop: string, value: any, fields?: Fields): any;
export declare function remove(obj: object, prop: string): void;
