/** * Works somewhat similarly to Record in the Record & Tuple proposal: * https://github.com/tc39/proposal-record-tuple */ declare const ValueObject: (object: A, filter?: ((entry: [string, any]) => boolean) | undefined) => A; export default ValueObject;