import { IApiBaseEntity } from '../../../../api-base-entity.interface';
import { TApiFunctionGetManyProperties } from '../../../../../type/decorator/api/function';
export interface IApiControllerGeneratedGetManySession {
    baseProperties: TApiFunctionGetManyProperties<IApiBaseEntity>;
    state: {
        candidateProperties?: TApiFunctionGetManyProperties<IApiBaseEntity>;
        isCandidateWhereScoped?: boolean;
        isPrepared: boolean;
    };
    windowWhere?: TApiFunctionGetManyProperties<IApiBaseEntity>["where"];
}
