import type { TableType } from "../Table";
import type { ExternalResourceBase } from "./common";
export declare type ExternalDynamoDBTableType = 'external.dynamo';
export declare type DynamoDBIdType = 'stream-arn' | 'table-arn' | 'table-name';
export interface ExternalDynamoDBTable extends ExternalResourceBase {
    externalResourceType: TableType;
    identifierType: DynamoDBIdType;
}
export declare const isExternalDynamoDBTable: import("@altostra/type-validations").ObjectOfTypeValidation<ExternalDynamoDBTable>;
