import { IStore, ISchema, DeleteOptions } from "../interfaces"; declare function remove(store: IStore): (this: ISchema, id: string, options?: DeleteOptions) => Promise; export default remove;