import { WaiterConfiguration, WaiterResult } from "@smithy/core/client"; import { DescribeTableCommandInput, DescribeTableCommandOutput, } from "../commands/DescribeTableCommand"; import { DynamoDBClient } from "../DynamoDBClient"; import { DynamoDBServiceException } from "../models/DynamoDBServiceException"; import { ResourceNotFoundException } from "../models/errors"; export declare const waitForTableNotExists: ( params: WaiterConfiguration, input: DescribeTableCommandInput ) => Promise< WaiterResult >; export declare const waitUntilTableNotExists: ( params: WaiterConfiguration, input: DescribeTableCommandInput ) => Promise>;