import { Entity } from '../entity'; import { EntityIdentifiable, Constructable, Filterable, Expandable, GetAllRequestBuilder as GetAllRequestBuilderBase } from '../../odata-common'; export declare class GetAllRequestBuilder extends GetAllRequestBuilderBase implements EntityIdentifiable { readonly _entity: EntityT; /** * Creates an instance of GetAllRequestBuilder. * @param entityConstructor - Constructor of the entity to create the request for */ constructor(entityConstructor: Constructable); expand(expands: Expandable[]): this; expand(...expands: Expandable[]): this; /** * 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; } export { GetAllRequestBuilder as GetAllRequestBuilderV4 }; //# sourceMappingURL=get-all-request-builder.d.ts.map