/// export interface PopoverContentPromptProps { onConfirm?: () => void; onCancel?: () => void; prompt?: string; description?: string; confirmText?: string; cancelText?: string; confirmLoading?: boolean; } export declare function PopoverContentPrompt(props: PopoverContentPromptProps): JSX.Element;