import { ReactNode } from 'react'; export interface VerificationFrameProps { aiCalloutBody: string; aiCalloutPrefix: string; autofillFooter: string; children: ReactNode; introBody: string; introTitle: string; className?: string; } export declare const VerificationFrame: ({ introTitle, introBody, aiCalloutPrefix, aiCalloutBody, autofillFooter, children, className, }: VerificationFrameProps) => import("react/jsx-runtime").JSX.Element;