import type { ITable } from "../utils/index.js"; import type { IStoreEntity } from "../store/types.js"; export interface ICreateEntityParams { table: ITable; } export declare const createEntity: ({ table }: ICreateEntityParams) => IStoreEntity;