import type { CommonAnswer } from "../ErrorScreen/types.js"; import { type GptDialogProps } from "../GptDialog/GptDialog.js"; type Props = { onClose: () => void; markup: string; onConfirmOk?: () => void; onConfirmCancel?: () => void; } & GptDialogProps; export declare function renderPopup(anchor: HTMLElement, props: Props): JSX.Element; export {};