import React from 'react'; export interface ViewerSection { label: string; value: string; } export interface ViewerProps { title: string; sections: ViewerSection[]; table?: { title?: string; headers: string[]; rows: string[][]; }; onBack: () => void; } export declare const Viewer: React.FC;