import { IFeedbackButton } from '../FeedbackButton/FeedbackButton.interface'; import { Text } from '@voiceflow/base-types'; interface IAgentMessage { text: string | Text.SlateTextValue; children?: React.ReactNode; ai?: boolean; disclaimerMessage?: string; isStreaming?: boolean; streamEnded?: boolean; isLast?: boolean; feedback?: IFeedbackButton | undefined; debug?: boolean; textContent?: string; setIsTyping?: () => void; onCompletelyDisplayed?: () => void; } export declare const AgentMessage: React.FC; export {}; //# sourceMappingURL=index.d.ts.map