import type { Table, TableType } from "./Table";
export * from "./Table";
export declare type DynamoDBResourceTypes = TableType;
export declare type DynamoDBResourceByTypes = {
    [K in TableType]: Table;
};
export declare type DynamoDBResources = DynamoDBResourceByTypes[DynamoDBResourceTypes];
