import { K as KeysOfUnion } from './KeysOfUnion-a7c66ae5.js'; import { M as Many } from './Many-084928e2.js'; import { M as Maybe } from './Maybe-58ee2d71.js'; declare function pick>(object: Maybe, properties: Many): Pick; declare function pick(object: Maybe, predicate: ObjectPredicate): Partial; type ObjectPredicate = (value: T[K], key: K, object: T) => boolean; export { pick as p };