import React from 'react';
export interface BusiCompTabProps {
    appId: string;
    isMobile: boolean;
    projectId?: string | number;
    tenantId?: string | number;
    terminal: 'app' | 'pc';
    fusionMode: boolean;
}
declare const BusiCompTab: React.FC<BusiCompTabProps>;
export default BusiCompTab;
