import { CLColors, CLNavItem, CLOrientation } from '../../../types'; export interface CLNavSectionProps { /** Set the color of the link. The property can be one of `CLColors`, e.g. `CLColors.Secondary`. */ color?: CLColors; /** An array of `CLNavItem` objects that will be rendered as a list of navigation items. */ navItems: CLNavItem[]; /** Sets a custom ID used for unit tests. */ testId?: string; /** Sets the orientation of the navigation section. The property can be one of `CLOrientation`, e.g. `CLOrientation.Horizontal` */ type?: CLOrientation; } declare const _default: import('vue').DefineComponent & Readonly<{}>, { color: CLColors; testId: string; type: CLOrientation; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLUListElement>; export default _default;