export interface ComponentDocsHeaderProps { /** The component's DS category */ category: string; /** The name of the component */ componentName: string; /** A brief summary of the component */ summary?: string; /** The DS version when the component was added */ versionAdded?: string; /** The DS version with the most recent version of the component */ versionLatest?: string; } export declare const ComponentDocsHeader: ({ category, componentName, summary, versionAdded, versionLatest, }: ComponentDocsHeaderProps) => import("react/jsx-runtime").JSX.Element; export default ComponentDocsHeader;