export declare const filterAsync: <T>(items: T[], predicate: (item: T) => Promise<boolean>) => Promise<T[]>;
