import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListQuickResponsesRequest, ListQuickResponsesResponse } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListQuickResponsesCommand}. */ export interface ListQuickResponsesCommandInput extends ListQuickResponsesRequest { } /** * @public * * The output of {@link ListQuickResponsesCommand}. */ export interface ListQuickResponsesCommandOutput extends ListQuickResponsesResponse, __MetadataBearer { } declare const ListQuickResponsesCommand_base: { new (input: ListQuickResponsesCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListQuickResponsesCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists information about quick response.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { QConnectClient, ListQuickResponsesCommand } from "@aws-sdk/client-qconnect"; // ES Modules import * // const { QConnectClient, ListQuickResponsesCommand } = require("@aws-sdk/client-qconnect"); // CommonJS import * // import type { QConnectClientConfig } from "@aws-sdk/client-qconnect"; * const config = {}; // type is QConnectClientConfig * const client = new QConnectClient(config); * const input = { // ListQuickResponsesRequest * nextToken: "STRING_VALUE", * maxResults: Number("int"), * knowledgeBaseId: "STRING_VALUE", // required * }; * const command = new ListQuickResponsesCommand(input); * const response = await client.send(command); * // { // ListQuickResponsesResponse * // quickResponseSummaries: [ // QuickResponseSummaryList // required * // { // QuickResponseSummary * // quickResponseArn: "STRING_VALUE", // required * // quickResponseId: "STRING_VALUE", // required * // knowledgeBaseArn: "STRING_VALUE", // required * // knowledgeBaseId: "STRING_VALUE", // required * // name: "STRING_VALUE", // required * // contentType: "STRING_VALUE", // required * // status: "STRING_VALUE", // required * // createdTime: new Date("TIMESTAMP"), // required * // lastModifiedTime: new Date("TIMESTAMP"), // required * // description: "STRING_VALUE", * // lastModifiedBy: "STRING_VALUE", * // isActive: true || false, * // channels: [ // Channels * // "STRING_VALUE", * // ], * // tags: { // Tags * // "": "STRING_VALUE", * // }, * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListQuickResponsesCommandInput - {@link ListQuickResponsesCommandInput} * @returns {@link ListQuickResponsesCommandOutput} * @see {@link ListQuickResponsesCommandInput} for command's `input` shape. * @see {@link ListQuickResponsesCommandOutput} for command's `response` shape. * @see {@link QConnectClientResolvedConfig | config} for QConnectClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You do not have sufficient access to perform this action.

* * @throws {@link ResourceNotFoundException} (client fault) *

The specified resource does not exist.

* * @throws {@link ValidationException} (client fault) *

The input fails to satisfy the constraints specified by a service.

* * @throws {@link QConnectServiceException} *

Base exception class for all service exceptions from QConnect service.

* * * @public */ export declare class ListQuickResponsesCommand extends ListQuickResponsesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListQuickResponsesRequest; output: ListQuickResponsesResponse; }; sdk: { input: ListQuickResponsesCommandInput; output: ListQuickResponsesCommandOutput; }; }; }