import React from 'react'; import type { AnalyticsEventAttributes } from '@atlaskit/teams-app-internal-analytics'; import { type ProfileType } from '../../types'; interface AnalyticsProps { fireAnalytics?: (eventKey: K, attributes: AnalyticsEventAttributes[K]) => void; profileType: ProfileType; } export declare const LoadingState: ({ fireAnalytics, profileType }: AnalyticsProps) => React.JSX.Element; export {};