type Falsy = false | '' | 0 | 0n | null | undefined;
/**
 * Filter and map an array *in place* with single iteration.
 */
export declare function filterMap<T, U>(array: T[], fn: (item: T) => Falsy | U): U[];
export {};
