import { Attribute, ITable, TableProps } from 'aws-cdk-lib/aws-dynamodb'; import { Stack } from 'aws-cdk-lib'; export type TableInput = Readonly<{ id: string; partitionKey: Attribute; sortKey?: Attribute; }>; /** Creates a DynamoDB table with default and optional per-call configuration overrides. */ export declare const withTable: (deps: { defaultConfiguration: Partial; stack: Stack; }) => (input: TableInput, configuration?: Partial) => ITable; //# sourceMappingURL=dynamo.d.ts.map