import { aws_dynamodb as dynamodb, RemovalPolicy } from 'aws-cdk-lib'; import * as constructs from 'constructs'; export interface AuthSecurityTableProps { readonly tableName?: string; readonly removalPolicy?: RemovalPolicy; } export declare class AuthSecurityTable extends constructs.Construct { readonly table: dynamodb.ITable; constructor(scope: constructs.Construct, id: string, props?: AuthSecurityTableProps); }