import { GetItemInput } from "@aws-sdk/client-dynamodb"; /** * An exception thrown when an item was sought with a DynamoDB::GetItem * request and not found. Includes the original request sent as * `itemSought`. */ export declare class ItemNotFoundException extends Error { readonly itemSought: GetItemInput; readonly name = "ItemNotFoundException"; constructor(itemSought: GetItemInput, message?: string); }