import { DynamoDB } from '../dynamodb'; import { Executable } from './executable'; import { Method } from './method'; import { ListTablesInput } from 'aws-sdk/clients/dynamodb'; export declare class ListTables extends Method implements Executable { constructor(dynamodb: DynamoDB); /** * Builds and returns the raw DynamoDB query object. */ buildRawQuery(): ListTablesInput; /** * Execute the `ListTables` request. */ exec(): Promise; private execHelper; }