import { default as React } from 'react'; import { ReportDefinition, SubReportDefinition } from '../../../../components/report-builder/report-viewer-index'; export interface ExpressionHighlight { label: string; expression: string; explanation: string; } interface Props { title: string; description: string; definition: ReportDefinition; highlights?: ExpressionHighlight[]; height?: number; defaultParameterValues?: Record; useSharedSubReports?: boolean; extraSubReports?: SubReportDefinition[]; onDrillThrough?: (variableName: string, value: unknown) => void; onParameterChange?: (values: Record) => void; controlledParameterValues?: Record; showDefinitionTab?: boolean; } export declare const LiveExampleViewer: React.FC; export {};