import type { ITable } from "../utils/table/index.js"; import type { TableConstructor } from "../toolbox.js"; export interface ICreateTableParamsIndexDefinition { partitionKey: string; sortKey?: string; } export type ICreateTableParams = Partial, "DocumentClient">> & { name: string; documentClient: Pick, "DocumentClient">["DocumentClient"]; }; export declare const createTable: (params: ICreateTableParams) => ITable;