import * as React from 'react';
import { AccessLevel, AdaptableApi } from '../../../../../types';
import { IModule } from '../../../../Strategy/Interface/IModule';
import { ModuleParams, ModuleViewPopupProps } from '../../SharedProps/ModuleViewPopupProps';
export interface AdaptablePopupModuleViewProps extends ModuleViewPopupProps<typeof AdaptablePopupModuleView> {
    module: IModule;
    api: AdaptableApi;
    accessLevel: AccessLevel;
    popupParams?: ModuleParams;
}
export declare const AdaptablePopupModuleView: React.FunctionComponent<React.PropsWithChildren<AdaptablePopupModuleViewProps>>;
