/** * @license * Copyright 2026 OEvortex * SPDX-License-Identifier: Apache-2.0 */ import type React from 'react'; interface ModelDialogProps { onClose: () => void; isFastModelMode?: boolean; } export declare function ModelDialog({ onClose, isFastModelMode }: ModelDialogProps): React.JSX.Element; export {};