/// import { IReport } from '../report'; export interface IReportProps { /** * Report object i.e. generated by `frictionless.validate` */ report: IReport; /** * Whether to show the debug form */ debug?: boolean; } /** * Visual component for Frictionless Report rendering */ export declare function Report(props: IReportProps): JSX.Element;