declare type MatchCallback = (value: T) => boolean; declare const match: (list: T[], fn: MatchCallback) => { matched: T[]; unmatched: T[]; }; export { match, }; export type { MatchCallback, }; //# sourceMappingURL=match.d.ts.map