import { Amount, LoggedInUser, TenantView } from '@zeniai/client-epic-state'; interface Props { signedInUser: LoggedInUser | undefined; currentTenant?: TenantView; isSettingsFeatureEnabled?: boolean; pageName?: "Dashboard" | "Cockpit"; referrerAmount?: Amount; onCockpitClick?: () => void; onLogOutClick?: () => void; onMyProfileClick?: () => void; onReferralsClick?: () => void; } export default function LogoutButton({ signedInUser, currentTenant, pageName, isSettingsFeatureEnabled, referrerAmount, onLogOutClick, onMyProfileClick, onReferralsClick, onCockpitClick, }: Readonly): import("react/jsx-runtime").JSX.Element; export {};