import { FunctionComponent } from 'react';
export type BaseCallbacksPropsType = {
    CustomizeParameterEditors?: (args: any) => void;
    CustomizeParameterLookUpSource?: (args: any) => void;
    ParametersReset?: (args: any) => void;
    ParametersSubmitted?: (args: any) => void;
    ParametersInitialized?: (args: any) => void;
    CustomizeLocalization?: (args: any) => void;
    OnInitializing?: (args: any) => void;
    BeforeRender?: (args: any) => void;
    OnServerError?: (args: any) => void;
};
declare const Callbacks: FunctionComponent<BaseCallbacksPropsType>;
export default Callbacks;
