/*! * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ import { FeedbackPayload } from '../../static'; import { ExtendedHTMLElement } from '../../helper/dom'; export interface FeedbackFormProps { initPayload?: FeedbackPayload; } export declare class FeedbackForm { private readonly feedbackOptionsWrapper; private readonly feedbackComment; private readonly feedbackSubmitButton; readonly defaultFeedbackFormItems: ExtendedHTMLElement[]; private feedbackPayload; private chatFormItems; private chatButtons; constructor(props?: FeedbackFormProps); private readonly onFeedbackSet; close: () => void; private readonly getFormItems; }