import type { EntityBuilderDeps, SelectAllEntities, SelectEntitiesById, SelectEntityById, SelectEntityByIndex, SelectEntityByIndices } from './entity.builder.types'; import type { EntityState } from './entity.types'; export declare const buildSelectAll: >(builder: EntityBuilderDeps) => SelectAllEntities; export declare const buildSelectByIds: >(builder: EntityBuilderDeps) => SelectEntitiesById; export declare const buildSelectById: >(builder: EntityBuilderDeps) => SelectEntityById; export declare const buildSelectByIndex: >(builder: EntityBuilderDeps) => SelectEntityByIndex; export declare const buildSelectByIndices: >(builder: EntityBuilderDeps) => SelectEntityByIndices;