import type { ReducerCallback, Repository, RepoOption, EntityType } from '../types';
export declare const createRepository: <TEntity = any, TOutputEntity = any, TEvent = any>(entity: EntityType<TEntity>, callback: ReducerCallback<TEntity, TEvent>, option: RepoOption) => Repository<TEntity, TOutputEntity, TEvent>;
