import { FunctionComponent } from 'react';
import { BaseCallbacksPropsType } from './_baseCallbacks';
export type ReportViewerCallbacksPropsType = BaseCallbacksPropsType & {
    CustomizeElements?: (args: any) => void;
    PreviewClick?: (args: any) => void;
    EditingFieldChanged?: (args: any) => void;
    DocumentReady?: (args: any) => void;
    CustomizeExportOptions?: (args: any) => void;
    CustomizeMenuActions?: (args: any) => void;
    OnExport?: (args: any) => void;
};
declare const ReportViewerCallbacks: FunctionComponent<ReportViewerCallbacksPropsType>;
export default ReportViewerCallbacks;
