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