export type KnowledgePageHeaderProps = { title: string; subtitle: string; totalCount: number; totalSize: string; documentsLabel: string; storageLabel: string; }; export default function KnowledgePageHeader({ title, subtitle, totalCount, totalSize, documentsLabel, storageLabel, }: KnowledgePageHeaderProps) { return (

{title}

{subtitle}

{documentsLabel}
{totalCount}
{storageLabel}
{totalSize}
); }