import { CountRequestBuilder as CountRequestBuilderCommon } from '@sap-cloud-sdk/odata-common';
import type { Entity } from '../entity';
import type { DeSerializers, DefaultDeSerializers } from '../de-serializers';
/**
 * Create an OData request to count entities based on the configuration of the request.
 * A `CountRequestBuilder` allows only for execution of the request.
 * If you want to apply query parameters like filter, skip or top do it on the {@link GetAllRequestBuilder} the count is created from.
 * @template EntityT - Type of the entity to be requested.
 * @template DeSerializersT - Type of the (de-)serializers.
 */
export declare class CountRequestBuilder<EntityT extends Entity, DeSerializersT extends DeSerializers = DefaultDeSerializers> extends CountRequestBuilderCommon<EntityT, DeSerializersT> {
}
