import { IStore, ISchema, SchemaFieldsDefinition, SchemaEvents } from "./interfaces"; declare function getSchemaCreator(store: IStore): SchemaConstructor; export interface SchemaConstructor { new (name: string, fieldMap: SchemaFieldsDefinition, events?: SchemaEvents): ISchema; prototype: ISchema; } export { getSchemaCreator };