import React from 'react'; type Props = { opa?: number; dryRun?: boolean; onComplete?: () => void; onError?: (error: string) => void; skipWaitScreen?: boolean; tag?: string; }; export default function PDPRunComponent({ opa, dryRun, onComplete, onError, skipWaitScreen, // Default to showing wait screen tag, }: Props): React.JSX.Element; export {};