import { FilterLambdaExpression, Entity as EntityBase, Filterable } from '../../odata-common'; /** * Will return the entity if at least one element of the one-to-many link relation fulfills the condition. * @param filters - A filter condition like MyEntity.someMultiLink.someProperty.eq('value') * @returns The lambda filter function to be considered in the query */ export declare function any(...filters: Filterable[]): FilterLambdaExpression; /** * Will return the entity if all elements of the one-to-many link relation fulfill the condition. * @param filters - A filter condition like MyEntity.someMultiLink.someProperty.eq('value') * @returns The lambda filter function to be considered in the query */ export declare function all(...filters: Filterable[]): FilterLambdaExpression; //# sourceMappingURL=filter-lambda-expression.d.ts.map