import type { CreateTableInput as LegacyCreateTableInput } from "aws-sdk/clients/dynamodb"; export declare type TableConfig = LegacyCreateTableInput & { data?: Record[]; TableName: string; }; export declare type Config = { tables?: TableConfig[] | (() => TableConfig[] | Promise); basePort?: number; };