import React from "react"; import type { MarkdownRef } from "../../forms/FormDefinition"; export interface AlertContentProps { getText: (key: string) => string; onClose: () => void; text: string | MarkdownRef; title: string | undefined; } export declare const AlertContent: ({ text, title, getText, onClose }: AlertContentProps) => React.JSX.Element; export interface ConfirmContentProps { getText: (key: string) => string; onClose: (result: boolean) => void; text: string | MarkdownRef; title: string | undefined; } export declare const ConfirmContent: ({ text, title, getText, onClose }: ConfirmContentProps) => React.JSX.Element; export interface PromptContentProps { defaultText: string | undefined; description: string | MarkdownRef; getText: (key: string) => string; onClose: (result: string | null) => void; title: string | undefined; } export declare const PromptContent: ({ description, defaultText, title, getText, onClose, }: PromptContentProps) => React.JSX.Element;