import { type VerifyItem } from '../hooks/useVerify.js'; import type { VerifyEndToEndResult } from '../actions/verify-e2e.js'; interface VerificationProps { dataDir: string; onComplete: (items: VerifyItem[]) => void; /** SP6: when provided, renders the end-to-end capability report after component checks. */ e2eResult?: VerifyEndToEndResult; } export declare function Verification({ dataDir, onComplete, e2eResult }: VerificationProps): import("react/jsx-runtime").JSX.Element; export type { VerifyItem }; //# sourceMappingURL=Verification.d.ts.map