import { IAgoraExtApp } from '..';
export declare const useAppPluginContext: () => {
    appPlugins: IAgoraExtApp[];
    activeAppPlugins: IAgoraExtApp[];
    contextInfo: {
        roomName: any;
        roomType: any;
        roomUuid: any;
        userName: any;
        userRole: any;
        userUuid: any;
        language: string;
    };
    onLaunchAppPlugin: (id: any) => void;
    onShutdownAppPlugin: (id: any) => void;
    appPluginProperties: (app: IAgoraExtApp) => any;
};
