/** * Configuration for the docs-nav-links component. */ export interface DocsNavLinksMetadata { /** * Previous page link. */ previous?: DocsNavLink; /** * Next page link. */ next?: DocsNavLink; /** * Custom CSS class. */ cssClass?: string; } export interface DocsNavLink { /** * Label (small text, e.g., "Previous", "Next"). */ label?: string; /** * Title (main text, page name). */ title: string; /** * Route to navigate to. */ route: string[]; }