import { IStore, Record, ISchema, CreateOptions } from "../interfaces"; declare function create(store: IStore): (this: ISchema, newRecord: { id?: string; } & T, options?: CreateOptions) => Promise; export default create;