import { FunctionComponent, MutableRefObject } from 'react'; import { PowerBIReportContext } from './context'; import { PowerBIComponentConfig } from './components/view/PowerBIReportView'; export type PowerBIProps = { reportId: string; hasContext?: boolean; reloadOnContextChange?: boolean; contextRef?: MutableRefObject; config?: PowerBIComponentConfig; }; export declare const PowerBI: FunctionComponent; export default PowerBI;