import { Constructable, EntityIdentifiable, Filterable, GetAllRequestBuilder as GetAllRequestBuilderBase } from '../../odata-common'; import { Entity } from '../entity'; export declare class GetAllRequestBuilder extends GetAllRequestBuilderBase implements EntityIdentifiable { /** * Creates an instance of GetAllRequestBuilder. * @param entityConstructor - Constructor of the entity to create the request for */ constructor(entityConstructor: Constructable); /** * Add filter statements to the request. * @param expressions - Filter expressions to restrict the response * @returns The request builder itself, to facilitate method chaining */ filter(expressions: Filterable[]): this; filter(...expressions: Filterable[]): this; } export { GetAllRequestBuilder as GetAllRequestBuilderV2 }; //# sourceMappingURL=get-all-request-builder.d.ts.map