import React from 'react'; import { UserInfo, TeamInfo, VirtualKey } from '../types'; interface DashboardHeaderProps { userInfo: UserInfo; teams: TeamInfo[]; keys: VirtualKey[]; loading: boolean; onGenerateKeyClick: () => void; /** Page tab bar, rendered flush with the bottom edge of the header card. */ tabs?: React.ReactNode; } export declare const DashboardHeader: React.FC; export {};