export interface SelectOptions<E> {
    filter?: ((entity: E) => boolean) | undefined;
}
