import * as React from 'react'; import { SxProps, Theme } from '@mui/system'; import { type ChatConfirmationClasses } from "./chatConfirmationClasses.js"; export interface ChatConfirmationProps { /** * The question or warning message to display. Required. */ message: string; /** * Label for the confirm button. * @default 'Confirm' */ confirmLabel?: string; /** * Label for the cancel button. * @default 'Cancel' */ cancelLabel?: string; /** * Called when the user clicks the confirm button. */ onConfirm?: React.MouseEventHandler; /** * Called when the user clicks the cancel button. */ onCancel?: React.MouseEventHandler; className?: string; sx?: SxProps; classes?: Partial; } declare const ChatConfirmation: React.ForwardRefExoticComponent>; export { ChatConfirmation };