// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

import {
	InteractionsOnCompleteInput,
	InteractionsSendInput,
} from '../../types';

/**
 * Input type for LexV2 send API.
 */
export type SendInput = InteractionsSendInput;

/**
 * Input type for LexV2 onComplete API.
 */
export type OnCompleteInput = InteractionsOnCompleteInput;
