import React from 'react'; import LabelsModel from '../models/LabelsModel'; type MainProps = { fansUnitedApiKey: string; fansUnitedClientId: string; fansUnitedLanguage?: string; fansUnitedEnvironment?: string; sportal365Project?: string; sportal365Infrastructure?: 'shared' | 'betway'; labels?: LabelsModel; hideSignOutButton?: boolean; }; declare const Main: React.FC; export default Main;