/// interface applications { id: number; name: string; iconUrl: string; description: string; } interface Props { selectedAppId: number | null; onSelectApplication: (id: number) => void; title: string; applications: applications[]; useGrid: boolean; row?: number; } declare function Tabs({ title, selectedAppId, onSelectApplication, applications, useGrid, row, }: Props): JSX.Element; export default Tabs;