export declare function access(value: Record, path: string): { get: () => T; set: () => undefined; } | { get: () => T; set: (newValue: T) => T; };