type PromptInputWithBottomActionsProps = { ideas?: { title: string; description: string; icon?: string; context?: string; callback?: () => void; }[]; /** * Callback function triggered to refresh the list of ideas. */ onRefreshIdeas?: () => void; onSendMessage: (message: string) => void; onVoiceMessage: (voice: Blob) => Promise; enableVoice?: boolean; enableScreenCapture?: boolean; onScreenshotClick?: () => void; onRemoveScreenshot?: () => void; enableAttachFile?: boolean; screenCaptured?: string; defaultPromptText?: string; status?: 'success' | 'failed' | 'pending'; onStopChat?: () => void; onRestartChat?: () => void; fontSize?: string; }; export default function Component({ ideas, onSendMessage, onVoiceMessage, enableVoice, enableScreenCapture, onScreenshotClick, onRemoveScreenshot, enableAttachFile, screenCaptured, defaultPromptText, status, onStopChat, onRestartChat, fontSize, onRefreshIdeas, }: PromptInputWithBottomActionsProps): import("react/jsx-runtime").JSX.Element; export {};